Switch to scrbook class for sans-serif headings

This commit is contained in:
2026-06-30 15:09:14 +02:00
parent 1f4249b7e9
commit 8e5b1697ad
10 changed files with 108 additions and 81 deletions
+1 -2
View File
@@ -3,8 +3,7 @@
\begin{document}
\chapter*{Abstract}\label{ch:abstract}
\addcontentsline{toc}{chapter}{\nameref{ch:abstract}}
\addchap{Abstract}\label{ch:abstract}
As semiconductor node sizes shrink, transient hardware faults pose a growing risk to computing systems, especially in environments where reliability is critical.
\Gls{wasm}, a binary-code format developed for the web, is increasingly used in embedded systems through standalone runtimes such as the \Gls{wamr}.
@@ -5,4 +5,6 @@
\chapter{Introduction}\label{ch:introduction}
\lipsum%
\end{document}
@@ -5,4 +5,9 @@
\chapter{Related Work}\label{ch:relatedwork}
\begin{itemize}
\item FAIL* paper/dissertation
\item Hardening papers
\end{itemize}
\end{document}
@@ -0,0 +1,14 @@
%! TeX program = lualatex
\documentclass[../../thesis.tex]{subfiles}
\begin{document}
\chapter{Background}\label{ch:background}
\begin{itemize}
\item Related work
\item Relevant information on WebAssembly
\item Relevant information on FAIL*
\end{itemize}
\end{document}
@@ -1,8 +0,0 @@
%! TeX program = lualatex
\documentclass[../../thesis.tex]{subfiles}
\begin{document}
\chapter{Experiment Design}\label{ch:experimentdesign}
\end{document}
+6 -1
View File
@@ -3,9 +3,10 @@
\begin{document}
% \addchap{Examples}\label{ch:examples}
\chapter{Examples}\label{ch:examples}
See if everything works:
\todo[inline]{Sanity check so everything looks correct}
This is \code{inline code}.
This is a reference to \Gls{fail}.
@@ -13,6 +14,8 @@ This is another reference to \Gls{fail}.
This is a citation~\autocite{polednaReplicaDeterminismDistributed1994}.
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{codeblock}[label=lst:examplelisting]{This is a listing}{C++}
\inputminted{cpp}{\subfix{listings/example.cpp}}
@@ -26,4 +29,6 @@ This is a formula: \( \sum\limits_{f=1}^{\infty}\frac{o}{r}\cdot m_{u} + l^{a} \
\caption{This is a figure.}\label{fig:examplefigure}
\end{figure}
\lipsum%
\end{document}