Skip to content
Snippets Groups Projects
Commit f33efee2 authored by lenoelda's avatar lenoelda
Browse files

Fix spacing in mainDocument

parent e271ecf8
Branches
No related merge requests found
...@@ -6,14 +6,14 @@ ...@@ -6,14 +6,14 @@
\usepackage{amsmath, amssymb} \usepackage{amsmath, amssymb}
\usepackage[inline]{enumitem} \usepackage[inline]{enumitem}
\usepackage[hidelinks]{hyperref} \usepackage[hidelinks]{hyperref}
\usepackage{tabularx} %used for better table formatting see: https://en.wikibooks.org/wiki/LaTeX/Tables#The_tabularx_package \usepackage{tabularx} % used for better table formatting see: https://en.wikibooks.org/wiki/LaTeX/Tables#The_tabularx_package
\usepackage[table,dvipsnames]{xcolor} \usepackage[table,dvipsnames]{xcolor}
\usepackage{graphicx} %pictures, photos \usepackage{graphicx} % pictures, photos
\usepackage{subfiles} %split doc into multiple .tex subfiles \usepackage{subfiles} % split doc into multiple .tex subfiles
\usepackage{float} %used to allow the [H] option for tables, etc. \usepackage{float} % used to allow the [H] option for tables, etc.
\usepackage{verbatim} %makes multiline comments possible via \begin{comment}\end{comment} \usepackage{verbatim} % makes multiline comments possible via \begin{comment}\end{comment}
\usepackage{ifthen, tikz, xstring, calc, pgfopts} %required for tikz-uml \usepackage{ifthen, tikz, xstring, calc, pgfopts} % required for tikz-uml
\usepackage{./tikz-uml} %make uml diagrams \usepackage{./tikz-uml} % make uml diagrams
\usepackage{listings} \usepackage{listings}
\usepackage{dirtree} \usepackage{dirtree}
\usepackage{geometry} \usepackage{geometry}
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
%%% SETTINGS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% SETTINGS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{parskip} %makes end of paragraphs use an empty line \usepackage{parskip} % makes end of paragraphs use an empty line
\setlength\parindent{0pt} %no indentation \setlength\parindent{0pt} % no indentation
\def\arraystretch{1.3} %extra padding in tables \def\arraystretch{1.3} % extra padding in tables
\definecolor{light-gray}{gray}{0.85} \definecolor{light-gray}{gray}{0.85}
\setcounter{tocdepth}{2} %exclude subsubsections from table of contents \setcounter{tocdepth}{2} % exclude subsubsections from table of contents
\lstset{ % \lstset{ %
%backgroundcolor=\color{}, % choose the background color; you must add \usepackage{color} or \usepackage{xcolor}; should come as last argument %backgroundcolor=\color{}, % choose the background color; you must add \usepackage{color} or \usepackage{xcolor}; should come as last argument
...@@ -78,9 +78,9 @@ ...@@ -78,9 +78,9 @@
%%% COMMANDS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% COMMANDS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\tabHead}[1]{\parbox{0.14\textwidth}{\medskip\textbf{#1}\medskip}} \newcommand{\tabHead}[1]{\parbox{0.14\textwidth}{\medskip\textbf{#1}\medskip}}
\newcommand{\tabBody}[1]{\parbox{0.81\textwidth}{\medskip #1 \medskip}} \newcommand{\tabBody}[1]{\parbox{0.81\textwidth}{\medskip #1 \medskip}}
\newcommand{\changelocaltocdepth}[1]{% \newcommand{\changelocaltocdepth}[1]{
\addtocontents{toc}{\protect\setcounter{tocdepth}{#1}}% \addtocontents{toc}{\protect\setcounter{tocdepth}{#1}}
\setcounter{tocdepth}{#1}% \setcounter{tocdepth}{#1}
} }
\def\CC{{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\tiny\textbf{++}}}} %write c++ properly, https://isocpp.org/wiki/faq/misc-environmental-issues#latex-macros \def\CC{{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\tiny\textbf{++}}}} %write c++ properly, https://isocpp.org/wiki/faq/misc-environmental-issues#latex-macros
...@@ -141,13 +141,13 @@ ...@@ -141,13 +141,13 @@
\cleardoublepage \cleardoublepage
%Glossary %%% GLOSSARY %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\glsaddall \glsaddall
\printglossaries \printglossaries
%Biblography %%% BIBLIOGRAPHY %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\phantomsection \phantomsection
\addcontentsline{toc}{section}{Bibliography} \addcontentsline{toc}{section}{Bibliography}
\printbibliography \printbibliography
\end{document} \end{document}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment