55 lines
2 KiB
TeX
55 lines
2 KiB
TeX
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% \EQ - Einfaches Einfügen von abgesetzten Formeln %
|
|
% %
|
|
% Argumente: #1 - Label %
|
|
% #2 - Formel %
|
|
% #3 - Satzzeichen %
|
|
% %
|
|
% z.B. \EQ{eq:meine_formel}{\eta=\frac{2x^2}{\sqrt{1+x^4}}}{.} %
|
|
% %
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\newcommand{\EQ}[3]{
|
|
\begin{equation}
|
|
\label{#1}
|
|
#2\;\;#3
|
|
\end{equation}
|
|
}
|
|
|
|
\newcommand{\an}[1]{\textcolor{red}{\textbf{#1}}}
|
|
|
|
\newcommand{\UL}{\underline}
|
|
\newcommand{\OL}{\overline}
|
|
\newcommand{\grad}{\ensuremath{^\circ}}
|
|
\newcommand{\ddt}{\frac{d}{dt}}
|
|
\newcommand{\halb}{\frac{1}{2}}
|
|
\newcommand{\MAT}[1]{\begin{pmatrix} #1 \end{pmatrix}}
|
|
\newcommand{\xy}{\begin{pmatrix} x \\ y \\1 \end{pmatrix}}
|
|
\newcommand{\dotxy}{\begin{pmatrix} \dot{x} \\ \dot{y} \\ 0 \end{pmatrix}}
|
|
\renewcommand{\sin}[1]{sin \left( #1 \right)}
|
|
\renewcommand{\cos}[1]{cos \left( #1 \right)}
|
|
|
|
% Eine auffällige Notiz für noch fehlende Teile
|
|
\newcommand{\todo}[1]{(\marginpar[\hfill{\color[rgb]{0.6,0,0}\rule{1em}{1em}}]{{\color[rgb]{0.6,0,0}\rule{1em}{1em}}}\emph{#1})}
|
|
|
|
% Verweis auf Formeln
|
|
\newcommand{\ER}[1]{\hyperref[#1]{Gleichung~(\ref*{#1})}}
|
|
|
|
% Verweis auf Abbildungen
|
|
\newcommand{\FR}[1]{\hyperref[#1]{Abbildung~\ref*{#1}}}
|
|
|
|
% Verweis auf Tabellen
|
|
\newcommand{\TR}[1]{\hyperref[#1]{Tabelle~\ref*{#1}}}
|
|
|
|
|
|
%
|
|
% Abkürzungen
|
|
%
|
|
\newcommand{\CAU}{Christian-Albrechts-Universit\"at zu Kiel}
|
|
|
|
%\newcommand{\filename}{BX29\_TANOS\_SED} %in main definiert
|
|
|
|
|
|
|
|
|
|
|