I've got two problems with the enotez package and I cannot get to find any information to solve them in the guide.
- Note numbers protrude beyond the left edge.
- There's too much space between the lines of the same note. I'm not talking about space between different notes here.
Code: Select all
\documentclass[a5paper, openany, 10pt]{book}
\usepackage[top=1.5cm,headsep=4pt,outer=2cm,inner=1cm,nofoot,bottom=1.5cm]{geometry}
\usepackage{blindtext}
\usepackage{bookmark}
\usepackage{fancyhdr}
\usepackage[reset=true,backref=true,totoc=chapter,split=chapter]{enotez}
\pagestyle{fancy}
\fancyhf{}
\fancypagestyle{plain}{%
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}
\renewcommand{\chaptermark}[1]{%
\markboth{\MakeUppercase{%
\thechapter.%
\ #1}}{}}
\fancyhead[RO]{\rightmark}
\fancyhead[LE]{\leftmark}
\fancyhead[RE]{\thepage}
\fancyhead[LO]{\thepage}
\begin{document}
\chapter{Introduction}
\blindtext
\blindenumerate[10]
\chapter{Conclusion}
\blindtext
\blindenumerate[10]
\printendnotes
\end{document}