Reorder chapters

This commit is contained in:
2026-09-10 21:05:45 +02:00
parent ba45bc64c3
commit 4c99a4be15
9 changed files with 36 additions and 17 deletions
@@ -0,0 +1,47 @@
%! TeX program = lualatex
%! TeX root = ../../thesis.tex
\documentclass[../../thesis.tex]{subfiles}
\begin{document}
% \addchap{Examples}\label{ch:examples}
\chapter{Sanity Checks}\label{ch:examples}
This is \code{inline code}.
This is a reference to \Gls{fail}.
This is another reference to \Gls{fail}.
This is a citation~\autocite{polednaReplicaDeterminismDistributed1994}.
\section{This is a section}\label{sec:examplesection}
This is a reference to \autoref{ch:introduction}.
This is a formula: \( \sum\limits_{f=1}^{\infty}\frac{o}{r}\cdot m_{u} + l^{a} \).
This is \textbf{bold text that is slightly bold}, so underwhelming.
In contrast, \sansbf{this text is very strong}, very cool\footnote{very cool}.
\begin{figure}[H]
\centering
\begin{subfigure}[b]{0.85\textwidth}
\includesvg[width=1.0\linewidth]{figures/example.svg}
\end{subfigure}
\caption{This is a figure.}\label{fig:examplefigure}
\end{figure}
\begin{codeblock}[label=lst:examplelisting]{This is a listing.}{C++}
\inputminted{cpp}{listings/example.cpp}
\end{codeblock}
\begin{table}[H]
\centering
\begin{tabularx}{\textwidth}{lX}
Column A & Column B \\
\midrule
This is & a table where the right column does automatic line breaking, so long cell contents don't exceed the page boundary. Cool. \\
This is & an second row. \\
\end{tabularx}
\caption{This is a table.}\label{tab:exampletable}
\end{table}
\lipsum%
\end{document}
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 1.9 MiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 610 KiB

+7
View File
@@ -0,0 +1,7 @@
class ExampleListing {
private:
int test;
public:
int toast;
};