Generalendnotes | Font Size for Endnotes Heading

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
gromar
Posts: 2
Joined: Tue Jun 12, 2012 5:55 pm

endnotes | Font Size for Endnotes Heading

Post by gromar »

Hello,

I'm new in LaTeX so don't be mad for noob questions please - I couldn't find any solution in endnotes documentation and I want to change one thing, when I use this package, including:

* Make only the 'Notes' (in my case it's called 'Spis przypisów') bigger than the rest of text (list of endnotes)

My code atm:

Code: Select all

\begingroup
\def\enotesize{\normalsize}
\renewcommand{\notesname}{Spis przypisów}
\renewcommand\enoteformat{\noindent[\theenmark]\hspace{0.06in}}
\theendnotes
\endgroup
Does anyone know how to do it? Is it possible to do it? Thanks in advance for any tips and help.

Best regards,
gromar

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

endnotes | Font Size for Endnotes Heading

Post by cgnieder »

I'm not sure what you mean because your code (embedded in a true Infominimal working example) gives me this:

Code: Select all

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{endnotes}

\begin{document}
Text\endnote{The first endnote.} Text\endnote{The second endnote}

\begingroup
\let\enotesize\normalsize
\renewcommand\notesname{Spis przypisów}
\renewcommand\enoteformat{\noindent[\theenmark]\hspace{0.06in}}
\theendnotes
\endgroup

\end{document}
endnotes.png
endnotes.png (10.06 KiB) Viewed 3336 times
As you can see the title is already bigger than the list. However, you can change the size of the title for example like this:

Code: Select all

% make it normalsize:
\renewcommand\notesname{{\normalsize Spis przypisów}}
% or huge
\renewcommand\notesname{{\huge Spis przypisów}}
Regards
site moderator & package author
gromar
Posts: 2
Joined: Tue Jun 12, 2012 5:55 pm

endnotes | Font Size for Endnotes Heading

Post by gromar »

cgnieder wrote:As you can see the title is already bigger than the list. However, you can change the size of the title for example like this:

Code: Select all

% make it normalsize:
\renewcommand\notesname{{\normalsize Spis przypisów}}
% or huge
\renewcommand\notesname{{\huge Spis przypisów}}
Regards
Great! That's what I was looking for :) Problem solved - thank You for your help.
Post Reply