GeneralSize of headings "Bibliography", "LoF", "LoT"

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
dn_befunk
Posts: 3
Joined: Sat Jul 16, 2011 2:53 pm

Size of headings "Bibliography", "LoF", "LoT"

Post by dn_befunk »

Hi everyone,

I am writing my master thesis in book class.

My chapter titles are "Large", but I cannot manage to get the automatically-generated "Bibliography", "List of Tables", and "List of Figures" headings in "Large" size as well.

As for the bibliography, I'm using BibTex, and including it in the backmatter.

As for the LoT and LoF, they're appendices (\appendix). I managed to change their name

\chapter*{\Large{Appendix C: List of Companies}}
\addcontentsline{toc}{chapter}{Appendix C: List of Companies}

, not their size.

Thx in advance!

Recommended reading 2024:

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

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

Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Size of headings "Bibliography", "LoF", "LoT"

Post by Stefan Kottwitz »

Hi,
dn_befunk wrote:My chapter titles are "Large", but I cannot manage to get the automatically-generated "Bibliography", "List of Tables", and "List of Figures" headings in "Large" size as well.
it depends on how you're doing the chapter size. If you do it in a consistent way, such as redefining \chapter or using the titlesec package, the automatically generated heading would have the same size, since they use \chapter*

However, if you do it like here
dn_befunk wrote:I managed to change their name

Code: Select all

\chapter*{\Large{Appendix C: List of Companies}}
i.e. manually inserting the \Large command into each \chapter argument, it would be the wrong approach, also not respected by \chapter calls done by packages or the class, not by you.

Just general remarks, since you did not show a code example yet (regarding your use of \chapter) but wrote a general question.

Stefan
LaTeX.org admin
dn_befunk
Posts: 3
Joined: Sat Jul 16, 2011 2:53 pm

Size of headings "Bibliography", "LoF", "LoT"

Post by dn_befunk »

Hi Stefan,

thanks for your reply and sorry about the trivialness of the question, I'm a LaTex beginner.

However, I actually I copy&pasted the wrong bit.

That's how I'm dealing with chapters

Code: Select all

\makeatletter
\renewcommand{\@makechapterhead}[1]{%
\vspace*{50 pt}%
{\setlength{\parindent}{0pt} \raggedright \normalfont
\bfseries\Large
\ifnum \value{secnumdepth}>1 
   \if@mainmatter\thechapter.\ \fi%
\fi
#1\par\nobreak\vspace{40 pt}}}
\makeatother
That's how I'm dealing with the List of Figures and the List of Tables

Code: Select all

\appendix
\renewcommand\listfigurename{Appendix A: List of Figures}
\listoffigures
\addcontentsline{toc}{chapter}{Appendix A: List of Figures}

\renewcommand\listtablename{Appendix B: List of Tables}
\listoftables
\addcontentsline{toc}{chapter}{Appendix B: List of Tables}
whereas my bibliography is

Code: Select all

\backmatter
\bibliography{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
I'm fine with how they appear in the toc, I just want the headings "Bibliography", "List of Tables" and "List of Figures" to be the same size as the other chapters' headings.

Thx again
Last edited by Stefan Kottwitz on Sat Jul 16, 2011 5:07 pm, edited 1 time in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Re: Size of headings "Bibliography", "LoF", "LoT"

Post by Stefan Kottwitz »

Hi,

the question is not very trivial, I think it's not easy to customize chapter headings without reading something specifically about that.

It's just important to see how you're doing it now. I see you redefined \@makechapterhead, that's ok. If \chapter* is used, such as the bibliography does, \@makeschapterhead is called instead, you should redefine this as well.

Stefan
LaTeX.org admin
dn_befunk
Posts: 3
Joined: Sat Jul 16, 2011 2:53 pm

Size of headings "Bibliography", "LoF", "LoT"

Post by dn_befunk »

Thanks Stefan,

I solved the problem by adding

Code: Select all

c
in the preamble and

Code: Select all

\ChTitleVar{\Large\bf}
before \begin{document}.

It seems to work.
Last edited by Stefan Kottwitz on Sat Jul 16, 2011 6:09 pm, edited 1 time in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Size of headings "Bibliography", "LoF", "LoT"

Post by Stefan Kottwitz »

\bf is an obsolete LaTeX 2.09 command, I recommend using \bfseries instead, see LaTeX Font Selection.

Stefan
LaTeX.org admin
Post Reply