Document Classes ⇒ Changing Size of the \appendixpage headline
Changing Size of the \appendixpage headline
I am using the elsart5p.cls. Unfortunately, in the elsart class' manual is written nothing about the option to add an appendix to an article. If I now use the appendix package together with the appendixpage-command, Latex creates an appendix headline which is way too large (it is even larger than the title of the article, as it is displayed in the elsart5p class). Is there any way to change the size of the headline "Appendix" manually?
In the manual to the appendix package, unfortunately I did not find anything about chaging the font size of the appendix headline.
Thank you very much and best regards,
Florian
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: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Changing Size of the \appendixpage headline
the appendix package is using \Huge or \huge, depending on the existence of \chapter.
A quick hack would be to use another font size command inside \appendixpage, it should work even it's expected to be just text:
Code: Select all
\expandafter\def\expandafter\appendixpagename%
\expandafter{\expandafter\Large\appendixpagename}
Code: Select all
\renewcommand*\appendixpagename{\Large Appendices}
Re: Changing Size of the \appendixpage headline
many thanks for your reply. As always, your suggestion solved my problem perfectly. Just adjusting the fontsize through the \renewcommand was a simple idea and did not demand me to change anything in the appendix package code.
Best regards,
Florian