Tagged Questions
3
votes
1answer
31 views
How to get the bookmark and the index (tableofcontents) with links to each section
I want to make a book without chapters are listed. Have an index (also don't want that chapters are listed in the index) and have the bookmark in the file.pdf. The problem is that I appear twice ...
6
votes
2answers
97 views
Graphical index based on figures? (Beamer)
At the end of my Beamer presentation, I would like a slide that contains thumbnails of all the images presented in my slide. These images would be linked to the slide which they appeared on. ...
1
vote
1answer
184 views
How to generate index page for report?
I am writing one report in which i need to write page index in the beginning of report.
XYZ
This is my first section which may use n number of pages.
DEF
This section may use m ...
0
votes
1answer
99 views
Creating software function index
I need to create some type of index for exported functions in the software for the latex manual. The doxygen feature of exporting to LaTeX does not allow to do it by default.
The required form is ...
3
votes
1answer
260 views
Link to index in TOC points does not point to index, but to whatever is right before index
My LaTeX document contains an index which is also referenced in the table of contents via \addcontentsline.
The page number displayed in the TOC is correct.
The link, however, is not.
(If I view the ...
5
votes
3answers
191 views
list of occurences of references
I need a list like the list of figures for \ref entries in the text to instances of a custom Theorem environment. Here's a MWE with a handbuilt example. The solution should add features to this code I ...
3
votes
1answer
436 views
Correctly add custom table of content item [duplicate]
Possible Duplicate:
Index is incorrectly listed in the table of contents
I want to add a custom section to my table of contents.
I know I can use addcontentsline{toc}{section}{title}. ...
6
votes
1answer
348 views
Index not linked properly in the navigation
I'm having troubles making Index visible in the navigation that is shown with the pdf preview of the document. Namely, the following is the end of my main .tex file:
% Bibliography
% ...
4
votes
2answers
673 views
How to add \printindex to tableofcontents
I want to add the \indexname to the table of contents and to the bookmarks.
Now, I know one way to do this job: add the follow code before \printindex:
\phantomsection
\cleardoublepage
...
5
votes
1answer
332 views
Beamer: Index of Listing
In beamer presentation I have a few headwords distributed on different slides. The appearance of these headwords I defined before and they don't be numbered.
Before these headwords started, I want to ...
4
votes
2answers
260 views
How to get correct page number of index in ToC [duplicate]
Possible Duplicate:
Problem with the numeration appearing in the table of contents
Index is incorrectly listed in the table of contents
I am using
\usepackage{madeidx}
\makeindex
I ...
5
votes
2answers
331 views
Order of appendices
I'm not sure whether it fits on TeX.SE or some other SE site, but anyways:
I wonder whether there's a good standard on the order of the common appendices when writing the thesis. I have in mind the ...
8
votes
2answers
579 views
Capitalization of Titles and Headers
I'm attempting to capitalize certain titles or headings in my LaTeX file. Specifically, if I want to use \printindex, \listoffigures, or \listoftables the title heading on each of these will be ...
6
votes
1answer
158 views
How to “clean” what is sent to the table of contents? (Remove index etc.)
I want to use markup commands such as \pkg{classicthesis} that not only typeset the entry, but that have side-effects such as adding a margin note or index entry. (See the example below.)
My problem ...
3
votes
1answer
533 views
Error compiling CJK with \tableofcontents and \makeindex
A basic document with Chinese text works fine:
\documentclass{article}
\usepackage{CJKutf8}
\title{标题}
\begin{document}
\begin{CJK}{UTF8}{gkai}
\maketitle
(text)
\end{CJK}
...
6
votes
3answers
324 views
Index is incorrectly listed in the table of contents
I have a large document with an index compiled through makeindex, and is included in my source .tex as follows:
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Index}
\printindex
...
2
votes
1answer
213 views
How to create Index for Verses
I ran into problem of creating index for a book (1200 page) which has around 700 verses and its explanation.
I have one main tex file with the preamble. I have 18 chapters in my book, so I created ...
4
votes
1answer
206 views
Fixing page number references when adding multiple indices to ToC
Friends, I'm stuck with a funny error: when I add multiple indices in my table of contents, all page number references mess up. It's probably something easy to solve, but I can't figure out what it ...
5
votes
3answers
568 views
Setting the name of an index with makeidx and adding to table of contents
I would like to change the name of my index, so that instead of "Index", it reads "Index of whatever I want". I've tried quite a few things:
redefining \indexname, after or before calling \makeindex
...
21
votes
1answer
4k views
How to make clickable links and cross-references in pdfs produced by LaTeX?
How can I make things link url references, my index, table of contents, and cross references clickable links in documents produced by LaTeX? I generally use pdflatex to produce my documents.
