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

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

User avatar
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 3436 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