General ⇒ Size of headings "Bibliography", "LoF", "LoT"
Size of headings "Bibliography", "LoF", "LoT"
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!
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
Size of headings "Bibliography", "LoF", "LoT"
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*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.
However, if you do it like here
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.dn_befunk wrote:I managed to change their nameCode: Select all
\chapter*{\Large{Appendix C: List of Companies}}
Just general remarks, since you did not show a code example yet (regarding your use of \chapter) but wrote a general question.
Stefan
Size of headings "Bibliography", "LoF", "LoT"
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
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}
Code: Select all
\backmatter
\bibliography{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
Thx again
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Size of headings "Bibliography", "LoF", "LoT"
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
Size of headings "Bibliography", "LoF", "LoT"
I solved the problem by adding
Code: Select all
c
Code: Select all
\ChTitleVar{\Large\bf}
It seems to work.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Size of headings "Bibliography", "LoF", "LoT"
Stefan