General ⇒ Table of contents
Table of contents
And
If I want to add two diagrams in one row, how do I do it? I used \begin{minipage} {0.3 linewidth}... \end{minipage}. Then diagrams are coming in row. But they are very close.
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
Table of contents
you could use \addtocontents:
Code: Select all
\addtocontents{toc}{\protect\thispagestyle{plain}}
Concerning the diagrams use \hspace{distance} between the minipage environments or just \hfill.
Stefan
Re: Table of contents
\addcontentsline{toc}{\protect\thispagestyle{plain}}
This is not working.
thanks.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Table of contents
use \addtocontents instead of \addcontentsline.
Stefan
Re: Table of contents
Many thanx