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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- 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