-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8cf0d5
commit cfcb4ad
Showing
6 changed files
with
243 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
*.aux | ||
*.log | ||
*.out | ||
*.gz | ||
*.toc | ||
*.bcf | ||
*.blg | ||
*.bbl | ||
*.run.xml | ||
*.fls | ||
*.fdb_latexmk | ||
*.synctex.gz | ||
*.synctex(busy) | ||
*.lof | ||
*.xdv | ||
*.alt | ||
*.lot | ||
*.acr | ||
# ignore all | ||
** | ||
|
||
!.gitignore | ||
!*.[texbimdatsh] | ||
!*.editorconfig | ||
|
||
!.github/ | ||
!.github/workflows | ||
!.github/workflows/** | ||
|
||
!.vscode/ | ||
!.vscode/** | ||
|
||
!assets/ | ||
!assets/img/ | ||
!assets/img/.gitkeep | ||
# uncomment this to check in pictures | ||
# !assets/img/*.[jpng] | ||
!assets/readme/ | ||
!assets/readme/*.[jpng] | ||
|
||
!build/ | ||
!build/template.tex | ||
!build/components/ | ||
!build/components/*.tex | ||
!build/components/*.cbx | ||
|
||
!build/test/ | ||
!build/test/*.[jpngtex] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
% hier stehen eigen definierte Befehle die Projektweit verwendet werden können | ||
|
||
% dhgefigure -> ... | ||
\DeclareDocumentCommand{\dhgefigure}{O{h} m m m m O{} O{}} | ||
{ | ||
\begin{figure}[#1] | ||
\begin{center} | ||
\includegraphics[#3]{#2} | ||
\end{center} | ||
\caption{#4} | ||
\label{#5} | ||
|
||
\ifx #6\empty | ||
\else\ifx | ||
#7\empty | ||
\else | ||
{\small \protect \textbf{Quelle:} \cite[#7]{#6}} | ||
\fi | ||
\fi | ||
|
||
\end{figure} | ||
} | ||
|
||
% new command -> \doubleunderline | ||
\newcommand{\doubleunderline}[1]{ | ||
\underline{\underline{#1}} | ||
} | ||
|
||
% formatierung der ba teile Autorreferat und Thesenblatt | ||
\newcommand{\baFormat}[2]{ | ||
\begin{center} | ||
{\LARGE\bf #1} | ||
|
||
\vspace{0.7cm} | ||
{\large\bf\enquote{\CTITLE}} | ||
|
||
\vspace{0.5cm} | ||
von \CAUTHOR | ||
\end{center} | ||
|
||
\vspace{1.5cm} | ||
|
||
{#2} | ||
|
||
\cleardoublepage | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.