blob: 12740ede28904a312de903b3cbdd778f4482c427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
\documentclass{article}
% \documentclass{scrartcl}
% \documentclass{memoir}
\usepackage[english]{babel}
% \usepackage{caption}
\usepackage[T1]{fontenc}
\usepackage{libertine}
\usepackage{enotez}
\usepackage{kantlipsum}
\DeclareInstance{enotez-list}{section}{paragraph}{heading=\section{#1}}
\setenotez{
split=section,
list-style=section,
reset,
backref
% customize the titles in between, e.g.:
% split-sectioning=addsec,
% split-title=\par\noindent<name> <ref>:
}
\usepackage{fnpct}
\usepackage{mwe}
\usepackage[colorlinks]{hyperref}
\begin{document}
\tableofcontents
\section{Test}
Text\endnote{\kant[1]}. Text\endnote{\kant[2]}. Text\endnote{This time
with a \textbf{nested}\multendnote{\kant[3];\kant[4]} endnote.}.
Text\multendnote{\kant[5];\kant[6]}.
\begin{figure}[htp]
\centering
\includegraphics[width=.4\linewidth]{example-image-a}
% \addtocounter{endnote}{-1} % <<< need this in memoir class and with
% `caption' package when using an endnote
% inside a caption
\caption[caption]{Some text\endnotemark.}
\endnotetext{An endnote with a nested endnote\endnote{\kant[7]} inside a
figure caption.}
\end{figure}
\appendix
\printendnotes
\end{document}
\tableofcontents
\section{Test}
Text\endnote{\kant[1]}. Text\endnote{\kant[2]}. Text\endnote{This time
with a \textbf{nested}\multendnote{\kant[3];\kant[4]} endnote.}.
Text\multendnote{\kant[5];\kant[6]}.
\begin{figure}[htp]
\centering
\includegraphics[width=.4\linewidth]{example-image-a}
\caption[caption]{Some text\endnote{An endnote with a nested endnote\endnote{\kant[7]}
inside a figure caption.}.}
\end{figure}
\section{Test}
Text\endnote{\kant[8]}. Text\endnote{\kant[9]}. Text\endnote{This time
with a \textbf{nested}\endnote{\kant[10]} endnote.}. Text\endnote{\kant[11]}.
\appendix
\printendnotes
\end{document}
|