Search found 3 matches

by yuguang
Fri Sep 11, 2009 12:31 am
Forum: Page Layout
Topic: List of Figures Not Included in Table of Contents
Replies: 5
Views: 2695

List of Figures Not Included in Table of Contents

Issue solved

Code: Select all

\addcontentsline{toc}{section}{Table of Contents}
\tableofcontents
\newpage
\addcontentsline{toc}{section}{List of Figures}
\listoffigures
\newpage
by yuguang
Wed Sep 09, 2009 10:08 pm
Forum: Page Layout
Topic: List of Figures Not Included in Table of Contents
Replies: 5
Views: 2695

Re: List of Figures Not Included in Table of Contents

I just use the \dotableofcontents from the template after a \tocsection, and the list of figures disappears from table of contents
by yuguang
Wed Sep 09, 2009 3:04 am
Forum: Page Layout
Topic: List of Figures Not Included in Table of Contents
Replies: 5
Views: 2695

List of Figures Not Included in Table of Contents

I am using the following code to generate the stuff:

\tocsection{}
\tableofcontents
\newpage
\listoffigures
\newpage


As soon as I put the \tocsection before \tableofcontents, the \listoffigures gets messed up in pdf and goes missing in dvi. I'm using MiKTEX 2.6. Is there any way to fix this? I ...