fontspec
... But I have a solution:Code: Select all
% arara: xelatex
\documentclass[a5paper, openany, 10pt]{book}
\usepackage{fontspec}
\setmainfont{Linux Libertine O}
\usepackage[top=1.5cm,headsep=4pt,outer=2cm,inner=1cm,nofoot,bottom=1.5cm]{geometry}
\usepackage{blindtext}
\usepackage{bookmark}
\usepackage{enotez}
\setenotez{
reset = true ,
backref = true ,
totoc = chapter ,
split = chapter ,
list-style = itemize
}
\renewcommand*\enmark[1]{\llap{#1}}
\ExplSyntaxOn\makeatletter
\cs_set_protected:Npn \enotez_write_mark:nn #1#2
{
\bool_if:NTF \l__enotez_hyperfootnotes_bool
{
\enotezwritemark { \hyperlink { enz.#1 } { \enmarkstyle #2 } }
\bool_if:NT \l__enotez_hyperbackref_bool
{ \Hy@raisedlink { \hypertarget { enz.#1.backref } { } } }
}
{ \enotezwritemark { \enmarkstyle #2 } }
}
\ExplSyntaxOff\makeatother
\begin{document}
\chapter{Introduction}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\blindtext
\endnote{\blindtext}
\printendnotes
\end{document}