Hi there,
I am currently writing my thesis and has encountered a problem with latex and it's table of content (toc). I have a list of figures (lof) before the introduction. I want this list of figures to be visible in toc. However, I do not want the page numbering to occur on the lof in toc. Is this possible?
Visible explanation is available through the image attached to this post.
Page Layout ⇒ Table of Content w/ Table of Figure Formatting
Table of Content w/ Table of Figure Formatting
- Attachments
-
- latex_toc.png (18.04 KiB) Viewed 2969 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Table of Content w/ Table of Figure Formatting
Hi and welcome,
you can use
you can use
\pagenumbering{gobble}
to turn off the numbering of pages. Code: Select all
Code, edit and compile here:
\documentclass{article}\usepackage{blindtext}\begin{document}\pagenumbering{gobble}\tableofcontents\blinddocument\blinddocument\cleardoublepage\pagenumbering{arabic}\blinddocument\blinddocument\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Table of Content w/ Table of Figure Formatting
Excellent. It worked flawlessly.
Thank you!
Thank you!