diff --git a/docs/docs.pdf b/docs/docs.pdf index fdd6be3..3bf9baf 100644 Binary files a/docs/docs.pdf and b/docs/docs.pdf differ diff --git a/docs/parts/reference.tex b/docs/parts/reference.tex index 89efa7c..52321b2 100644 --- a/docs/parts/reference.tex +++ b/docs/parts/reference.tex @@ -4,6 +4,7 @@ \begin{itemize} \item \textit{scope}: \texttt{minimal}, \texttt{most}, \texttt{recommended}, \texttt{all} or \texttt{letter} \item \textit{string}: Any normal text + \item \textit{math}: Any math input \item \textit{number}: Any non-negative integer, i.e. no commas \item \textit{color}: Any of the \texttt{dvipsnames} colours of \texttt{xcolor} \end{itemize} @@ -18,7 +19,11 @@ \item \verb|\renewcommand{\city}|\{\textit{string}\} Change the city (for letters) for this document only \item \verb|\renewcommand{\countrycode}|\{\textit{string}\} Change the country-code (for letters) for this document only \item \verb|\setcounter{numberingConfig}|\{\textit{number}\} Change the numbering of definitions, lemmas, etc for this document. 1 = Separately, 2 = Combined (except for definition), 3 = Combined, 4 = Off - \item \verb|\setcounter{numberSubsections}|\{\textit{number}\} Change the format of the numbering of definition, lemma, etc. 0 = $<$section$>$.$<$number$>$,\\1 = $<$section$>$.$<$subsection$>$.$<$number$>$,\\ 2 = $<$section$>$.$<$subsection$>$.$<$subsubsection$>$.$<$number$>$ + \item \verb|\setcounter{numberSubsections}|\{\textit{number}\} Change the format of the numbering of definition, lemma, etc. + 0 = $<$section$>$.$<$number$>$,\\ + 1 = $<$section$>$.$<$subsection$>$.$<$number$>$,\\ + 2 = $<$section$>$.$<$subsection$>$.$<$subsubsection$>$.$<$number$>$\\ + Changing this won't affect all of numbering prior to the command, only after. You can change this setting (and the one above) at any point in the document \item \verb|\setcounter{descriptorShadeStrength}|\{\textit{number}\} Change the colour saturation of the inline descriptors \item \verb|\setcounter{shadeStrength}|\{\textit{number}\} Change the colour saturation of the \verb|\shade| command \item \verb|\setLang|\{\textit{language}\} Change the language. Will automatically load babel in German. Can only be used once and only at the start of the document or in the preamble, as repeated usage leads to undefined behaviour @@ -36,6 +41,33 @@ \end{itemize} \newpage +\subsection{Math-Commands} +All these have to be executed in the math environment. +\begin{itemize} + \item \verb|\R| Prints $\R$. Same goes for \verb|\C| printing $\C$, etc. + \item \verb|\floor|\{\textit{math}\} Round down symbol, e.g. $\floor{n}$ + \item \verb|\ceil|\{\textit{math}\} Round up symbol, e.g. $\ceil{n}$ + \item \verb|\hastoeq| or \verb|\mbeq| Has to equal symbol (non-standard), $\hastoeq$ + \item \verb|\Leftrightarrowequiv| Equivalence transformation symbol, $\Leftrightarrowequiv$. + \item \verb|\Rightarrowequiv| Equivalence transformation symbol, $\Rightarrowequiv$. + \item \verb|\Leftarrowequiv| Equivalence transformation symbol, $\Leftarrowequiv$. + \item \verb|\defAs| Define as, i.e. $\defAs$ + \item \verb|\defEquiv| Define as, but with a two-sided implication instead of equality, i.e. $\defEquiv$ + \item \verb|\defImplies| Define as, but with one-sided implication, i.e. $\defImplies$ + \item \verb|\divides| Divider or divides symbol, e.g. $a \divides b$ + \item \verb|\lcm| Least common multiple, $\lcm$ +\end{itemize} + +\subsection{CS-Commands} +These commands have to be executed outside the math environment. +\begin{itemize} + \item \verb|\timecomplexity| Prints the word time complexity with a coloured box. + \item \verb|\tc| Shorthand for \verb|\tct|. Deprecated + \item \verb|\tct| Time complexity in \tct{}-notation (average case) + \item \verb|\tco| Time complexity in \tco{}-notation (worst case / upper bound) + \item \verb|\tcl| Time complexity in \tcl{}-notation (best case / lower bound) +\end{itemize} + \subsection{Style} General styling commands. All other commands, except these ones require at least \texttt{most} to be the selected \textit{scope} \begin{itemize} diff --git a/main/cs.tex b/main/cs.tex index 33b5f91..c48433f 100644 --- a/main/cs.tex +++ b/main/cs.tex @@ -13,5 +13,5 @@ \newcommand{\timecomplexity}{\fhlc{orange}{\ifnum\value{lang}<2{Time complexity}\else {Laufzeit}\fi} \hspace{0.5em}} \newcommand{\tc}[1]{\timecomplexity $\Theta (#1)$} \newcommand{\tct}[1]{$\Theta (#1)$} -\newcommand{\tco}[1]{$O(#1)$} +\newcommand{\tco}[1]{$\mathcal{O}(#1)$} \newcommand{\tcl}[1]{$\Omega(#1)$}