mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-12-01 23:33:58 -06:00
* Change colors for links and hyperref This is less in your face than what we previously had. Discussion in : https://github.com/hendricius/the-sourdough-framework/discussions/201 There might be ways to make that better (not in your face and clickable ?) https://tex.stackexchange.com/questions/555663/create-a-table-of-contents-with-links-in-all-text-and-different-colours-for-sect * Remove colors for links in To* As per @hendricius input
74 lines
1.4 KiB
TeX
74 lines
1.4 KiB
TeX
\documentclass[paper=a4, twoside=false, fontsize=12pt, parskip=half,
|
|
bibliography=totoc, listof=totoc]{scrbook}
|
|
|
|
% General packages
|
|
\usepackage{sourdough}
|
|
|
|
% Basic attributes
|
|
\author{Hendrik Kleinwächter}
|
|
\title{The Sourdough Framework}
|
|
|
|
\begin{document}
|
|
\input{cover/cover.tex}
|
|
\titlepage
|
|
|
|
\frontmatter
|
|
{%
|
|
\hypersetup{hidelinks}
|
|
\ifdefined\HCode\else\tableofcontents\fi
|
|
}
|
|
|
|
\input{intro/foreword}
|
|
\input{intro/preface}
|
|
\input{intro/acknowledgements}
|
|
|
|
\mainmatter
|
|
|
|
\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}
|
|
|
|
% \input{mix-ins/mix-ins.tex}
|
|
\chapter{Baking}%
|
|
\label{chapter:baking}
|
|
\input{baking/baking}
|
|
|
|
\chapter{Storing bread}%
|
|
\label{chapter:storing-bread}
|
|
\input{storing-bread/storing-bread}
|
|
|
|
\chapter{Troubleshooting}
|
|
\input{troubleshooting/misc}
|
|
|
|
\backmatter
|
|
\printbibliography
|
|
{%
|
|
\hypersetup{hidelinks}
|
|
\listofflowcharts
|
|
\listoftables
|
|
\listoffigures
|
|
}
|
|
|
|
\end{document}
|