mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-20 01:51:12 -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>
44 lines
1.5 KiB
INI
44 lines
1.5 KiB
INI
\Preamble{xhtml,2,sec-filename,fn-in,fonts,svg,mathml,mathjax,nostyle}
|
|
\DeclareGraphicsExtensions{.png,.svg,.jpg,.jpeg,.JPG,.eps,.pdf,.mps}
|
|
% fix rendering of degree celsius
|
|
\DeclareSIUnit\degreeCelsius{\text{°C}}
|
|
\Configure{Gin-dim}{}
|
|
\Css{img {
|
|
max-width: 100\%;
|
|
height: auto;
|
|
}}
|
|
|
|
\Configure{AddCss}{style.css}
|
|
\ConfigureEnv{titlepage}{\ifvmode\IgnorePar\fi\EndP\HCode{<main class="titlepage">}}{\ifvmode\IgnorePar\fi\EndP\HCode{</main>}}{}{}
|
|
|
|
% Mini TOC
|
|
\Configure{crosslinks+}{%
|
|
\bgroup
|
|
% container for the page toc
|
|
\Configure{tableofcontents}{\IgnorePar\EndP\HCode{<nav class="TOC">}\IgnorePar}
|
|
{\HCode{\Hnewline}}{\IgnorePar\HCode{</nav>\Hnewline}\ShowPar}{}{}%
|
|
\TableOfContents[chapter,section,subsection]% Print table of contents before crosslinks
|
|
\egroup
|
|
\ifvmode\IgnorePar\fi\EndP%
|
|
\HCode{<main class="main-content">\Hnewline<nav class="crosslinks-top">} }
|
|
{\HCode{</nav>\Hnewline}}
|
|
{\ifvmode\IgnorePar\fi\EndP%
|
|
\HCode{<nav class="crosslinks-bottom">}}{\HCode{</nav>}}{}{}
|
|
|
|
% configuration for TOC on the main page
|
|
\Configure{tableofcontents}{\IgnorePar\EndP\HCode{<nav class="TOC">}\IgnorePar}
|
|
{}{\IgnorePar\HCode{</nav>\Hnewline<main class="main-content">\Hnewline}\ShowPar}{}{}%
|
|
|
|
% close the <main> element started in \Configure{crosslinks+}
|
|
\Configure{@/BODY}{\ifvmode\IgnorePar\fi\EndP\HCode{</main>}}
|
|
% Goatcounter counting
|
|
|
|
\renewcommand\listofflowcharts{%
|
|
\chapter*{\listoflocname}%
|
|
\TableOfContents[loc]%
|
|
}
|
|
\ConfigureToc{loc}{\HCode{<span class="lofToc">}}{\ }{}{\HCode{</span><br />}}
|
|
|
|
\begin{document}
|
|
\EndPreamble
|