ai1/tex/main.tex

93 lines
2.4 KiB
TeX
Raw Normal View History

2024-12-25 13:35:57 +01:00
\documentclass[a4paper,11pt,titlepage,numbers=noenddot]{scrbook}
%%%% Document Setup
\usepackage[top=2cm,lmargin=1in,rmargin=1in,bottom=3cm,hmarginratio=1:1]{geometry}
\usepackage{scrlayer-scrpage}
\usepackage{anyfontsize}
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{stmaryrd}
\usepackage[final]{hyperref}
\automark{chapter}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\renewcommand{\subsectionmark}[1]{\markright{\thesubsection\ #1}}
\pagestyle{scrheadings}
\usepackage[moderate, title=tight, bibliography=tight, margins=tight]{savetrees}
%%%%
%%%% Metadata
\newcommand{\DocTitle}{Summary}
\newcommand{\UniCourse}{Artificial Intelligence 1}
\newcommand{\UniProf}{Prof.\ Michael Kohlhase}
\author{Leon Vatthauer}
%%%%
%%%% Title
\title{
\vspace{2in}
\textmd{\textbf{\UniCourse\\\DocTitle}}\\
\vspace{0.1in}\large{Held by \textit{\UniProf\ }}
\vspace{3in}
}
%%%%
%%%% Spacing
% \setlength{\parindent}{0pt}
% \setlength{\parskip}{6pt}
% \setlength{\marginparsep}{0cm}
%%%%
%%%% Math packages
\usepackage{amsthm}
\usepackage{thmtools}
\usepackage{tikz}
\usetikzlibrary{cd, babel, quotes}
\usepackage{quiver}
\declaretheorem[name=Definition,style=definition,numberwithin=section]{definition}
\declaretheorem[name=Example,style=definition,sibling=definition]{example}
\declaretheorem[style=definition,numbered=no]{exercise}
\declaretheorem[name=Remark,style=definition,sibling=definition]{remark}
\declaretheorem[name=Assumption,style=definition,sibling=definition]{assumption}
\declaretheorem[name=Observation,style=definition,sibling=definition]{observation}
\declaretheorem[name=Theorem,sibling=definition]{theorem}
\declaretheorem[sibling=definition]{corollary}
\declaretheorem[name=FaktFact,sibling=definition]{fact}
\declaretheorem[sibling=definition]{lemma}
\declaretheorem[sibling=lemma]{proposition}
%%%%
%%%% href
\makeatletter
\hypersetup{
pdfauthor={\@author},
pdftitle={\UniCourse},
% kill those ugly red rectangles around links
hidelinks,
}
\makeatother
%%%%
\begin{document}
%% Titlepage
\maketitle
\thispagestyle{empty}
\null\newpage
\setcounter{page}{1}
%%
%% TOC
\tableofcontents
%%
%% Contents
2024-12-25 13:44:06 +01:00
\include{sections/01_prolog}
\include{sections/02_agents}
\include{sections/03_problemsolving}
\include{sections/04_logic}
\include{sections/05_planning}
2024-12-25 13:35:57 +01:00
%%
\appendix
\emergencystretch=1em
% \printbibliography[heading=bibintoc]{}
\end{document}