mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-25 20:33:59 -06:00
* Add a flowchart environnement and its listof
So we can more easily access those flowcharts from pdf and website,
rather than looking in the crowded list of figures.
* Update book/troubleshooting/misc.tex
* Temporarily remove list of flow charts from web version
* Update clean target to deal with listofcharts
* Silent KOMA warnings (#190)
No functional change, but less warnings will help to read the logs.
Good idea anyway to use the key/value scheme
Co-authored-by: Cedric <ced@awase.ostal>
* Fix front-page for one sided printing (#189)
As it is manually placed, is prone to break on evry change of the page
geometry... This one looks good though in today's conditions.
Co-authored-by: Cedric <ced@awase.ostal>
* Enable micro-typographical improvements (#191)
Few people will notice but this actually brings loads of improvements to
line breaking, handing punctuations etc.
* Revert "Temporarily remove list of flow charts from web version"
This reverts commit 9611b250d2.
* Implement listofflowchart for tex4ht
as per michal suggestion:
https://github.com/michal-h21/tex4ebook/issues/114#issuecomment-1688543095
---------
Co-authored-by: Cedric <ced@awase.ostal>
Co-authored-by: Hendrik Kleinwaechter <hendrik.kleinwaechter@gmail.com>
75 lines
1.4 KiB
TeX
75 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
|
|
% \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/misc}
|
|
|
|
\backmatter
|
|
\printbibliography
|
|
\listofflowcharts
|
|
\listoftables
|
|
\listoffigures
|
|
|
|
\end{document}
|