All Questions
Tagged with listoffigures or table-of-contents
7,467 questions
5
votes
1
answer
71
views
Controlling Subsection Visibility in LaTeX Table of Contents
I am using the amsart document class in LaTeX. I would like the table of contents to display all sections while including only a single, specific subsection. All other subsections should remain ...
0
votes
0
answers
71
views
How does \setuplist inherit from \setupframed w/r to the TOC?
Where the documentation for \setuplist reads that it inherits from \setupcounter and \setupframed how are those options to be input?
I tried just adding frame=on with the rest of the options in the ...
0
votes
2
answers
30
views
Getting Page Numbers to Populate in ToC for Unnumbered Chapters and Sections [book]
Except that the sections in the preliminaries aren't populating page numbers, this is the formatting that I'd like for the ToC. Is there a way to tether a specific line in the body of the book to the ...
0
votes
1
answer
58
views
Adding color to \writetolist line in the TOC
I don't know what I'm doing wrong, here, but I'd like to style the \writetolist item in the TOC to be a different color than black. I realize I can add the color to the text content itself but that ...
1
vote
0
answers
41
views
Table of Contents disappears when compiling with LaTeX Workshop in VS Code [closed]
I am writing a large LaTeX book in VS Code using the LaTeX Workshop extension and LuaLaTeX. My file structure looks like this:
Desktop/
└── epsilon/
├── main.tex
├── chapter1.tex
├── ...
6
votes
1
answer
119
views
Formatting ToC and chapters in a tagged PDF
I have been tasked with designing a template for creating a tagged PDF that meets certain formatting requirements. The only major obstacle I have encountered is in generating a Table of Contents that ...
0
votes
0
answers
47
views
Is there any known package which prohibits subfigures to appear in `\listoffigures`
I am facing an unusual issue. My book contains over 11,000 lines of code, and I need to generate a list of figures that includes subfigures. The standard method for doing this does not work in the ...
3
votes
1
answer
30
views
Local table of content versus the main / global table of content
When I have the following MWE:
\documentclass{book}
\usepackage{hyperref}
\usepackage[deeplevels]{etoc}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\setcounter{tocdepth}{3}
\part{User ...
1
vote
1
answer
35
views
How listoftables creates lot file - aux file processing
I try to figure out how to create conditional list of tables without reading the counters or using packages like assoccnt and found an answer that uses
\IfFileExists{\jobname.lot}{%
\listoftables
}{
}
...
2
votes
1
answer
38
views
Modifing tableofcontents, listoffigures and listoftables with hungarian babel
I am having the following code:
\documentclass[11pt]{report}
\usepackage[magyar]{babel}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{parskip}
\usepackage{float}
\usepackage{setspace}
\...
0
votes
0
answers
28
views
Table of Contents: prevent line break between dotted line and the page number
With \titlecontents of the package titletoc to configure table of contents, I am encountering an issue that if the text is essentially occupying the whole line, then the page number might be wrapped ...
5
votes
0
answers
55
views
Help trying to customise toc with tagging support
I'm trying to customise the TOC using built in commands to allow for tagging support, but I'm running in to some behaviour I can't figure out.
In the following MWE, the I set \contentsline@text@2@...
1
vote
1
answer
31
views
The entry References in TOC must be upper case (abntex2)
\documentclass[chapter=TITLE, twoside]{abntex2}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@ARTICLE{example,
author = {Other, Anthony Norman},
title = {Some ...
3
votes
1
answer
70
views
Why adding titlesec makes links in toc inside PDF no longer work when using \setcounter{secnumdepth}{0}?
I wanted TOC not to have section numbers displayed. So instead of using the star version of sections, found that simply adding \setcounter{secnumdepth}{0} does that.
But then I found that once package ...
2
votes
1
answer
60
views
tex4ht does not create local TOC when using starred version of sectioning with an explicit \addcontentsline
setup: I wanted to make all my sections and subsections without numbers showing on the left side of each entry. So I changed to using the star version and with manually entering each section or ...