mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-12-08 02:24:25 -06:00
* Add chemfig package Somhow forgot it in chemical equation commit 8004497b * Change links colors to codeblue Closes https://github.com/hendricius/the-sourdough-framework/issues/142 * Use KOMA-Script and twosided printing Because it looks better. Also gets rid of headers/footers on empty pages * Fix tex4ebook and komascript clash See https://github.com/michal-h21/tex4ebook/issues/110 * Factor out packages into a sty file Separates style details out of the main file, now that we start having more and more style-related settings. * Remove parskip Not needed with Koma-script * Remove tocloft package Not needed with koma-script * Use tocbasics instead of floats to please kpmascript internal algorithm * Add a bit more breathing space in ToC so they are not stuck together at 11.11 onwards...
79 lines
1.5 KiB
TeX
79 lines
1.5 KiB
TeX
\documentclass[a4paper, twoside, 12pt]{scrbook}
|
|
|
|
% General packages
|
|
\usepackage{sourdough}
|
|
|
|
% Basic attributes
|
|
\author{Hendrik Kleinwächter}
|
|
\title{The Sourdough Framework}
|
|
|
|
\begin{document}
|
|
|
|
\frontmatter
|
|
% Title page
|
|
\begin{titlepage}
|
|
\begin{center}
|
|
\includegraphics[width=\textwidth]{images/cover-page.jpg}
|
|
Version:
|
|
\today
|
|
\end{center}
|
|
\end{titlepage}
|
|
|
|
% \tableofcontents
|
|
\ifdefined\HCode\else\tableofcontents\fi
|
|
|
|
\chapter{Foreword}
|
|
\input{intro/foreword}
|
|
|
|
\chapter{Preface}
|
|
\input{intro/preface}
|
|
|
|
\chapter{Acknowledgements}
|
|
\input{intro/acknowledgements}
|
|
|
|
|
|
\mainmatter
|
|
|
|
\chapter{The history of sourdough}
|
|
\input{history/sourdough-history}
|
|
|
|
\chapter{How sourdough works}
|
|
\input{basics/how-sourdough-works}
|
|
|
|
\chapter{Making a sourdough starter}
|
|
\input{sourdough-starter/sourdough-starter}
|
|
|
|
\chapter{Sourdough starter types}
|
|
\input{sourdough-starter/sourdough-starter-types}
|
|
|
|
\chapter{Flour types}
|
|
\input{flour-types/flour-types}
|
|
|
|
\chapter{Bread types}
|
|
\input{bread-types/bread-types}
|
|
|
|
\chapter{Wheat sourdough}%
|
|
\label{chapter:wheat-sourdough}
|
|
\input{wheat-sourdough/wheat-sourdough}
|
|
|
|
\chapter{Non wheat sourdough}%
|
|
\label{chapter:non-wheat-sourdough}
|
|
\input{non-wheat-sourdough/non-wheat-sourdough}
|
|
|
|
\chapter{Baking}%
|
|
\label{chapter:baking}
|
|
\input{baking/baking}
|
|
|
|
\chapter{Storing bread}%
|
|
\label{chapter:storing-bread}
|
|
\input{storing-bread/storing-bread}
|
|
|
|
\chapter{Troubleshooting}
|
|
\input{troubleshooting/crumb-structures/crumb-structures}
|
|
\input{troubleshooting/misc}
|
|
|
|
\printbibliography
|
|
|
|
|
|
\end{document}
|