26 lines
563 B
TeX
26 lines
563 B
TeX
\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}}
|
|
|