Projekt

Allgemein

Profil

Endnote Markup » Historie » Version 1

Martin Kraetke, 23.12.2021 15:04

1 1 Martin Kraetke
h1. Endnote Markup
2
3
h2. Options
4
5
class option for @\documentclass[]{transpect}@:
6
7
* @endnotes@: deactivate footnotes and render endnotes 
8
* @endnoteswithchapters@: an individual endnote section per chapter 
9
10
switch to endnotes and include chapter headings in the endnotes listing.
11
12
* @resetnotesperchapter@
13
14
h2. usage of endnotes
15
16
Markup as @\footnote[<Zähler>]{<Inhalt>}@. Rendering via @\printnotes@.
17
18
* *Please note* that endnote headings are not automatically generated. Instead they must be inserted in the document:
19
<pre><code class="text">
20
\documentclass[endnotes]{transpect}
21
22
\begin{heading}{chapter}
23
  \title{Endnotes}
24
\end{heading}
25
\printnotes
26
</code></pre>
27
* Output at the end of the book
28
<pre><code class="text">
29
\documentclass[endnoteswithchapters]{transpect}
30
31
\begin{heading}{chapter}
32
  \title{Endnotes}
33
\end{heading}
34
\printnotes
35
</code></pre>
36
* chapterwise endnotes:
37
<pre><code class="text">
38
\documentclass[endnotes]{transpect}
39
40
\begin{heading}{section}
41
  \title{Endnotes}
42
\end{heading}
43
\printnotes
44
</code></pre>