summaryrefslogtreecommitdiff
path: root/latexHeaders/commands.sty
diff options
context:
space:
mode:
Diffstat (limited to 'latexHeaders/commands.sty')
-rw-r--r--latexHeaders/commands.sty56
1 files changed, 0 insertions, 56 deletions
diff --git a/latexHeaders/commands.sty b/latexHeaders/commands.sty
deleted file mode 100644
index edbba1b..0000000
--- a/latexHeaders/commands.sty
+++ /dev/null
@@ -1,56 +0,0 @@
-% custom commands
-\newcommand{\optional}[1]{
- \ifoptional
- #1
- \fi}
-\newcommand{\runtime}[1]{\ensuremath{\mathcal{O}\left(#1\right)}}
-\newcommand{\code}[1]{\lstinline[breaklines=true]{#1}}
-\let\codeSafe\lstinline
-
-\usepackage{tikz}
-\usetikzlibrary{angles,quotes}
-
-
-%new environment to define algorithms
-\usepackage{ifthen}
-\NewDocumentEnvironment{algorithm}{ O{required} m +b }{}{
- \ifthenelse{\equal{#1}{optional}}{%
- \optional{
- \needspace{4\baselineskip}%
- \subsection{#2\textcolor{gray}{(optional)}}%
- #3%
- }
- }{%
- \needspace{4\baselineskip}%
- \subsection{#2}%
- #3%
- }
-}
-
-%\ifthenelse{\equal{#3}{}}{}{\runtime{#3}}
-
-\newcommand{\sourcecode}[1]{%
- \label{code:#1}%
- \nobreak%
-% \needspace{3\baselineskip}%
-% \nopagebreak%
- \lstinputlisting{#1}%
- \penalty -1000%
-}
-\newcommand{\sourceref}[1]{{%
- \color{comment}\bfseries\itshape{}Seite \pageref{code:#1}%
-}}
-
-\newcommand{\method}[4][]{\texttt{#2}~~#3~~\runtime{#4}#1\par}
-
-\newenvironment{methods}[1][lll]{%
- %\begin{minipage}{\linewidth}%
- \renewcommand{\method}[4][]{\texttt{##2}&##3&\ifthenelse{\equal{##4}{}}{}{\runtime{##4}}##1\\}%
- \begin{tabular}{@{}#1@{}}%
-}{%
- \end{tabular}%
- %\end{minipage}%
- \nobreak%
- \needspace{3\baselineskip}%
- \nobreak%
-}