Background

This commit is contained in:
elvis
2025-11-09 13:19:19 +01:00
parent 81706d8325
commit f5321f1a9d
5 changed files with 646 additions and 15 deletions

View File

@ -1,15 +1,10 @@
\documentclass[12pt, oneside]{article}
\documentclass[11pt, twoside, openright]{book}
%% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %%
%% Load Packages %%
%% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %%
\usepackage[
top=2cm,
bottom=2cm,
left=2cm,
right=2cm,
headheight=20pt,
centering
]{geometry}
\geometry{a4paper}
@ -50,12 +45,16 @@
\usepackage{algpseudocode} %% loads algorithmicx
\usepackage{amsthm}
\usepackage{thmtools} %% theorems
\usepackage{simplebnf}
\usepackage{stmaryrd}
\usepackage{ebproof}
\usepackage{xfrac}
%% plot packages
\usepackage{pgfplots} %% plots used with \begin{tikzpicture}
\usepackage{tikz} %% for pictures
\usetikzlibrary{trees}
\pgfplotsset{width=10cm,compat=newest}
\usepackage{subcaption}
%% design packages
\usepackage{enumitem} %% for lists and enumerating
@ -69,7 +68,6 @@
\usepackage[hidelinks]{hyperref} %% links for table of contents, load last
\usepackage{bookmark} %% for better table of contents
%% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %%
%% Configuration of the packages %%
%% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %%
@ -150,6 +148,14 @@
]{steo}
\declaretheorem[numbered=no, style=steo]{theorem}
\declaretheoremstyle[
headfont=\normalfont\bfseries,
notefont=\mdseries,
bodyfont=\normalfont,
qed=\qedsymbol % chktex 1
]{slem}
\declaretheorem[numbered=no, style=slem]{lemma}
\declaretheoremstyle[
headfont=\normalfont\bfseries,
notefont=\mdseries,
@ -171,7 +177,12 @@
%% ......................................................................... %%
%% local changes
% \setcounter{secnumdepth}{0}
\newcommand{\defeq}{\vcentcolon=}
\usetikzlibrary{trees, positioning, shapes.misc, positioning, arrows.meta}
\DeclarePairedDelimiter\abs{\lvert}{\rvert}%
\DeclarePairedDelimiter\doublesq{\llbracket}{\rrbracket}%
%% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %%
@ -185,7 +196,8 @@
\begin{document}
\input{section}
\input{introduction}
\input{background}
\end{document}