enotez works well, but we had a problem when it was used together with a large collection of style files. Instead, defined a simple mod of endnotes that worked in that environment. Also used two options where you can click either on the note number or on the text marked with that number. The latter seems useful for small font displayed on a tablet when it is difficult to hit the very small note number. Here is a complete example.
% A simple macro that uses endnotes with hyperref
% (by Giovanni Rinaldi and Klaus Truemper)
%
% Important: the command \setcounter{notelabelcount}{0} needs
% to go just before \theendnotes
%
\documentclass[12pt]{article}
\usepackage{hyperref}
%\hypersetup{pdfborder=0 0 0} % Uncomment if you want to get rid
% of the box highlighting the link
\usepackage{endnotes}
% hyperref of notes
\newcounter{notelabelcount}
\setcounter{notelabelcount}{0}
\def\HyperRaiseLinkDefault{12pt} % Replace 12pt with \baselineskip or
% any other suitable length
% this macro makes the note number become the link to the endnote
\newcommand{\mysimplenote}[1]{%
\addtocounter{notelabelcount}{1}%
\hyperref[notelabel\thenotelabelcount]{%
\endnote{%
\addtocounter{notelabelcount}{1}%
\phantomsection\label{notelabel\thenotelabelcount}%
{#1}%
}}%
}
% this macro makes some text (1st parameter) become the link to
% the endnote (second parameter)
\newcommand{\mynote}[2]{%
\addtocounter{notelabelcount}{1}%
\hyperref[notelabel\thenotelabelcount]{#1}%
\endnote{%
\addtocounter{notelabelcount}{1}%
\phantomsection\label{notelabel\thenotelabelcount}%
{#2}%
}%
}
\begin{document}
RODERIGO:
Tush! Never tell me. I take it much unkindly
That thou, Iago, who hast had my purse
As if the strings were thine, shouldst know of
this\mysimplenote{W.~Shakespeare, Othello, Act 1, Scene 1.}.
MONTANO:
Methinks the wind hath spoke aloud at land,
A fuller blast ne'er shook our battlements.
If it hath ruffianed so upon the sea
What ribs of oak, when mountains melt on them,
Can hold the mortise? What shall we hear of
this?\mysimplenote{W.~Shakespeare, Othello, Act 2, Scene 1.}
OTHELLO:
Get you to bed on th' instant, I will be returned
Forthwith. Dismiss your attendant there,
\mynote{look't be done}{W.~Shakespeare, Othello, Act 4, Scene 3.}.
\newpage
\setcounter{notelabelcount}{0} % this is necessary
\theendnotes
\end{document}
enotezpackage work nicely together withhyperref– cgnieder Mar 05 '13 at 09:44