This repository has been archived on 2024-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
Praxisbericht-Template/main.tex

92 lines
3.7 KiB
TeX
Raw Normal View History

\documentclass[12pt]{article}
2023-09-15 13:30:07 +00:00
% =====================================================================
% latex packages to use
\usepackage{graphicx} % Required for inserting images
\usepackage{longtable} % Tables that can overflow pages
\usepackage{setspace} % for more spacing control
\usepackage{geometry} % for margin control
\usepackage{tabularx} % extension of tabular environment that allows dynamic widths
2024-03-05 09:06:24 +00:00
\usepackage[]{hyperref} % for referecing stuff
\usepackage{fancyhdr} % fancy headers
\usepackage{import} % advanced document import
\usepackage{pdfpages} % include multipage pdf documents
\usepackage{tikz} % graphics, diagrams, logic
\usepackage{imakeidx} % inhaltsverzeichnis
\usepackage{nomencl} % nomenclature
\usepackage{acro} % acronyms
\usepackage[ngerman]{babel} % german language support
\usepackage[labelfont=bf]{caption} % make caption title fat
\usepackage{wrapfig} % for figures wrapping text wraps around
2024-02-24 15:31:56 +00:00
\usepackage[cache=false,outputdir=build]{minted} % highlighted code blocks
2023-09-15 13:30:07 +00:00
\usepackage[toc,style=altlist]{glossaries}
\usepackage{tocloft} % control over the typography of the Table of Contents, etc.
\usepackage{listings} % code listings
\usepackage{color} % more colors
2023-09-27 15:05:50 +00:00
\usepackage{tikz-imagelabels} % overlay labels for images
\usepackage{cite} % citation for bibliography
2023-11-21 17:25:03 +00:00
\usepackage{amssymb} % provides enhancements for mathematical formulas
2023-11-21 17:40:06 +00:00
% \usepackage[utf8]{inputenc} % load files via \input as UTF-8, enabled by default since 2018
2023-11-21 21:06:35 +00:00
\usepackage{pgfplots} % visualization tool ideal for creating scientific/technical graphics
\usepackage{float} % extra option to place tables, figures etc.
\usepackage{amsmath} % better layout strategies for compliacted/larger equations
\usepackage{multicol} % multi column page layouts
2024-03-06 09:56:37 +00:00
\usepackage[bottom]{footmisc} % footnotes
\usepackage{natbib}
2023-09-15 13:30:07 +00:00
\makeindex
\makenomenclature
\makeglossaries
2023-11-21 14:59:58 +00:00
\makenomenclature
2023-09-15 13:30:07 +00:00
% include acronym definitions
\input{acros}
\input{glossary}
2023-11-21 14:59:58 +00:00
\input{nomencl.tex}
2023-09-27 15:05:50 +00:00
\input{config/bibtex}
2023-09-15 13:30:07 +00:00
% include file with fixes and workaround
% as well as special settings
\input{extra/fixes}
% article page geometry configuration
\input{config/geomerty}
2024-03-05 09:06:24 +00:00
\input{config/acro} % setup acronyms
2023-09-15 13:30:07 +00:00
\begin{document}
% =====================================================================
% include configuration files
\input{config/author} % meta information about author
\input{config/pages} % set page configuration
\input{config/minted} % set minted configuration
2023-09-15 13:30:07 +00:00
\input{extra/utils} % some utility stuff
% =====================================================================
% meta pages will have roman line numbering
\pagenumbering{Roman}
% include documents in the directory pages/
\input{pages/page-01-title}
\input{pages/page-02-indipendence-declaration}
\input{pages/page-03-lock-notice}
2023-10-09 15:48:02 +00:00
\input{pages/page-04-geschlechter-hinweis.tex}
\input{pages/page-05-abstract.tex}
\input{pages/page-06-summary.tex}
\input{pages/page-07-preface.tex}
\input{pages/page-08-indices.tex}
2023-09-15 13:30:07 +00:00
% =====================================================================
% chapter
\pagenumbering{arabic}
% add section title to header
\pagestyle{fancy}
\fancyhead[L]{\nouppercase{\leftmark}}
% include all used chapters
2023-10-09 15:49:18 +00:00
\input{config/chapter.tex}
2023-09-15 13:30:07 +00:00
2023-09-27 15:05:50 +00:00
% source references follow content of article
\input{pages/page-09-bibliography}
2023-09-15 13:30:07 +00:00
\end{document}