Graphics, Figures & Tables ⇒ exclude table from TOC
-
- Posts: 2
- Joined: Fri Jun 04, 2010 7:45 am
exclude table from TOC
Many thanks for your help,
A.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
exclude table from TOC
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=3cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{blindtext}
\begin{document}
\listoftables
\bigskip
\blindtext
\begin{table}[!ht]
\caption{Dummy table with LoF entry}\label{tab:dummy-1}
\centering
\rule{6.4cm}{3.6cm}
\end{table}
\blindtext
\begin{table}[!ht]
\captionsetup{list=no}
\caption{Dummy table without LoF entry}\label{tab:dummy-2}
\centering
\rule{6.4cm}{3.6cm}
\end{table}
\blindtext
\begin{table}[!ht]
\caption{Dummy table with LoF entry}\label{tab:dummy-3}
\centering
\rule{6.4cm}{3.6cm}
\end{table}
\blindtext
\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 2
- Joined: Fri Jun 04, 2010 7:45 am
Re: exclude table from TOC
Many thanks for your quick reply. This works perfectly.
Best wishes, Andrew