Text Formatting ⇒ headings in endnote
headings in endnote
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
headings in endnote
Code: Select all
\renewcommand*{\notesname}{Myheading}
\markboth
you could adjust the headings, such as in this sample:Code: Select all
\clearpage
\markboth{this and that}{something else}
\begingroup
\parindent 0pt
\parskip 2ex
\def\enotesize{\normalsize}
\theendnotes
\endgroup
endnotes.sty
:Code: Select all
\def\notesname{Notes}%
\def\enoteheading{\section*{\notesname
\@mkboth{\MakeUppercase{\notesname}}{\MakeUppercase{\notesname}}}%
\mbox{}\par\vskip-\baselineskip}
\MakeUppercase
. You could remove it in a redefinition.So, redefinitions may look like, in your own preamble:
Code: Select all
\renewcommand*{\notesname}{Myheading}
\makeatletter
\renewcommand*{\enoteheading}{%
\section*{\notesname}%
\markboth{\notesname}{\notesname}%
\@afterindenttrue}
\makeatother
\@afterindenttrue
is to get the paragraph indentation like for any following line.Your end notes may then look like the other headings in your document, with default article settings like:
Stefan
headings in endnote
\notename
as you suggested and then I created a myendnotes.sty
file by changing lines 373-376 in the standard endnotes.sty
file fromCode: Select all
\def\notesname{Notes}%
\def\enoteheading{\section*{\notesname
\@mkboth{\MakeUppercase{\notesname}}{\MakeUppercase{\notesname}}}%
\mbox{}\par\vskip-\baselineskip}
Code: Select all
\def\notesname{Notes}%
\def\enoteheading{\label{endn}\chapter*{\notesname
\@mkboth{\MakeUppercase{\notesname}}{\MakeUppercase{\notesname}}}%
\mbox{}\par\vskip-\baselineskip}