# -*- mode: Perl -*- # /=====================================================================\ # # | endnotes | # # | Implementation for LaTeXML | # # |=====================================================================| # # | Part of LaTeXML: | # # | Public domain software, produced as part of work done by the | # # | United States Government & not subject to copyright in the US. | # # |---------------------------------------------------------------------| # # | Bruce Miller #_# | # # | http://dlmf.nist.gov/LaTeXML/ (o o) | # # \=========================================================ooo==U==ooo=/ # package LaTeXML::Package::Pool; use strict; use warnings; use LaTeXML::Package; #====================================================================== NewCounter('endnote'); DefMacroI('\theendnote', undef, '\arabic{endnote}'); DefMacroI('\endnotetyperefname', undef, 'endnote'); # \theenmark Should be assigned to the mark, by \endnote,\endnotemark ! # \enotesize # \@makeentext to format the text of the endnote; not used (yet)!!! # This is NOT correct; it should be edef'd after the counter is stepped... DefMacro('\theenmark', '\theendnote'); DefMacro('\makeenmark', '\hbox{\textsuperscript{\normalfont\theenmark}}'); DefMacro('\fnum@endnote', '\makeenmark'); DefMacroI('\ext@endnote', undef, 'ent'); DefMacro('\endnote', '\lx@note{endnote}'); DefMacro('\endnotemark', '\lx@notemark{endnote}'); DefMacro('\endnotetext', '\lx@notetext{endnote}'); # \addtoendnotes{text} DefMacro('\addtoendnotes{}', ''); DefMacro('\notesname', 'Notes'); # Note: NOT called \printendnotes! DefConstructorI('\theendnotes', undef, "#name", properties => sub { (name => Digest(T_CS('\notesname'))); }); #====================================================================== 1;