hi there,
in my current project I want to have the \listoffigures in the appendix-section. (this means, there should be a big letter in front of "list of figures").
I don't know how to do that. hope you can help me.
regards, aurora
ps. I'm using the scrreprt class.
General ⇒ make headings appendix-headings
NEW: TikZ book now 40% off at Amazon.com for a short time.
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
make headings appendix-headings
Here is a rough method (remember to change it back if you want the list of figures in the preface):
Edit line 3027 in scrreprt.cls (\tex\latex\koma-script) fromto be
Another thing to consider is the liststotocnumbered option but this will cause all lists to have a chapter number (for example, if you have a table of contents in the preface)
Edit line 3027 in scrreprt.cls (\tex\latex\koma-script) from
Code: Select all
\newcommand*\lof@heading{\float@listhead{\listfigurename}}
Code: Select all
\newcommand*\lof@heading{\float@listhead{\chapter{\listfigurename}}}
Code: Select all
\documentclass[a4paper,liststotocnumbered]{scrreprt}
Re: make headings appendix-headings
liststotocnumbered does exactly what I wanted to have. Thank you!
Am I right, that I have to change the code of the bibtex package to integrate my sources page into appendix?
Am I right, that I have to change the code of the bibtex package to integrate my sources page into appendix?
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
make headings appendix-headings
I am not sure exactly what you mean, but if you want the bibliography heading numbered like an appendix, then change line 3073 of scrreprt.cls fromto beThen just put your bibliography in the appendix and use BiBTeX as normal
Code: Select all
\chapter*{\bibname}%
Code: Select all
\chapter{\bibname}%
Code: Select all
\appendix
\chapter{An appendix}
\listoffigures
\bibliographystyle{plain}
\bibliography{ReportBib}