General ⇒ endnote formatting
endnote formatting
number appear un-superscripted in the notes section,
but still superscripted in the body of the document?
Also, how do you stop the endnotes from being
indented.
Even better, I'd like a hanging indent for the
endnotes, something like this:
1. some text and
__some more text
__all in the same note
2. the next note similarly
___formatted
(where ___ represents blank space)
TIA<
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
endnote formatting
Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\usepackage{endnotes}
\usepackage{blindtext}
\renewcommand\enoteformat{%
\noindent\theenmark.\ \hangindent .7\parindent%
}
\begin{document}
\blindtext\endnote{This endnote has a lot of text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.}
\blindtext\endnote{Another endnote.}
\theendnotes
\end{document}
Re: endnote formatting
indent is correct for notes with a single digit number,
but incorrect for two digit numbered endnotes. (I
hope you see what I mean - with two digit numbers
the text of the first line is "too far" to the right and
does not align with the start of the second line when
I have parindent set to .7. Increasing parindent causes
the first line's text to be "too far" to the left for notes
with a single digit number)
By hacking around with endnote.sty I got a nice effect
where the endnote numbers are offset to the left in
the margin slightly and the note text aligns perfectly ...