Dear friends,
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
Document Classes ⇒ Changing Size of the \appendixpage headline
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10321
- Joined: Mon Mar 10, 2008 9:44 pm
Changing Size of the \appendixpage headline
Hi Florian,
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:
Or, avoiding plain TeX:
Stefan
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}
LaTeX.org admin
Re: Changing Size of the \appendixpage headline
Hi Stefan,
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
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