General ⇒ make headings appendix-headings
make headings appendix-headings
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.
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
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
make headings appendix-headings
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
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
Code: Select all
\chapter*{\bibname}%
Code: Select all
\chapter{\bibname}%
Code: Select all
\appendix
\chapter{An appendix}
\listoffigures
\bibliographystyle{plain}
\bibliography{ReportBib}