66 lines
1.4 KiB
TeX
66 lines
1.4 KiB
TeX
% !TeX root = ./main-exercises.tex
|
|
\documentclass[a4paper,english]{report}
|
|
|
|
% Language and font encoding
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[english,ngerman]{babel}
|
|
|
|
% Headers and footers
|
|
\usepackage{fancyhdr}
|
|
|
|
% Special characters
|
|
\usepackage{eurosym, tipa, textcomp, textgreek, upgreek}
|
|
|
|
% Mathematical symbols
|
|
\usepackage{amssymb, amsfonts, amsmath, dsfont}
|
|
|
|
% References and URLs
|
|
\usepackage[hidelinks]{hyperref}
|
|
\usepackage{cleveref}
|
|
|
|
% Images
|
|
\usepackage{graphicx}
|
|
\usepackage{float}
|
|
\graphicspath{graphics/}
|
|
|
|
% Text color
|
|
\usepackage[usenames,dvipsnames]{xcolor}
|
|
|
|
% Multiple captions in one figure
|
|
\usepackage{subcaption}
|
|
|
|
% Compact lists
|
|
\usepackage{paralist}
|
|
|
|
% Lists with different bullet points
|
|
\usepackage{enumitem}
|
|
|
|
% Tables
|
|
\usepackage{longtable, array, tabularx, booktabs, colortbl}
|
|
|
|
% PDF imports
|
|
\usepackage{pdfpages}
|
|
|
|
% ToDos
|
|
\usepackage{todonotes}
|
|
\usepackage{changes}
|
|
|
|
% Source code listings
|
|
\usepackage{listings}
|
|
\ifthenelse{\equal{\listingsmode}{minted}}{\usepackage{minted}}{}
|
|
|
|
% Quotes (\enquote)
|
|
\usepackage[autostyle,autopunct=false]{csquotes}
|
|
|
|
% Literature
|
|
\usepackage[style=numeric, citestyle=ieee, backend=biber]{biblatex}
|
|
|
|
% Line wraps in monospace font
|
|
\usepackage[htt]{hyphenat}
|
|
|
|
% Tracking changes
|
|
\usepackage{changes}
|
|
\definechangesauthor[color=blue, name={Christian}]{C}
|
|
\definechangesauthor[color=purple, name={Florian}]{F}
|