Initial commit

This commit is contained in:
Stephan Maier
2021-03-30 09:38:00 +02:00
commit 8c64d953d1
18 changed files with 797 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
\definecolor{gfBlue}{RGB}{0,108,161}
\definecolor{fsiOrange}{RGB}{239,119,29}
\definecolor{fsiGrey}{RGB}{102,102,102}
\newcommand{\gfSpec}[1]
{
\textcolor{gfBlue}{#1}
}
\newcommand\insFig[3]{ % 1 = Label, 2 = Größe, 3 = Dateiname und Pfad
\renewcommand{\figurename}{Abb.}
\begingroup
\renewcommand\numberline[1]{}
\endgroup
\begin{minipage}{\linewidth}
\centering
\includegraphics[width=#2\columnwidth]{#3}
\captionof{figure}{#1}
\label{fig:#1}
\end{minipage}
}
\newcommand\figRef[1]{siehe Abb.:~\ref{fig:#1}}