Tagged Questions
4
votes
2answers
161 views
How to make appendices like section in bookmarks
I had a problem as I wanted to make my appendices look like sections.
I already found a solution to do this for the table of contents by using this code just before the \chapter command in the ...
5
votes
1answer
218 views
Hyperref, \noappendicestocpagenum appendix option, and table of contents
In my thesis, I am using both the appendix package and the hyperref package. When I get to the appendix, I use the following commands:
\appendix
\noappendicestocpagenum
\addappheadtotoc
\appendixpage
...
9
votes
2answers
1k views
Conflict between babel, hyperref and appendix package
While writing my thesis I use the hyperref and appendix packages like in the little example below.
test.tex
\documentclass{book}
\usepackage{hyperref}
\usepackage[titletoc]{appendix}
...
1
vote
1answer
197 views
Customize appendix entries in ToC and pdf bookmarks [duplicate]
Possible Duplicate:
How to make appendices behave like sections in ToC
Consider the minimal example below. How can I achieve that in the appendix part (only there!) of the ToC paragraphs ...
6
votes
2answers
2k views
Beamer, page/frame numbers, buttons and Appendix slides
I am using beamer and I have a slide in an Appendix section. I hyper-reference it with a button. The Appendix does not appear as a section itself. The Appendix material is at the end of the code. I ...
7
votes
1answer
749 views
How to make appendix and hyperref packages work together with cyrillic (non ASCII) characters?
I have a LaTeX document with hyperref and appendix packages that fails to build. But if I switch off either appendix or hyperref everything works fine.
\documentclass[14pt]{article}
...
3
votes
1answer
422 views
Why does hyperref bookmark work?
The \appendix command resets the section counter to zero:
*\documentclass{article}
*\show\appendix
(/usr/share/texmf-texlive/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h ...
1
vote
1answer
316 views
Reference not found
When trying to reference to an appendix using autoref using the following code:
\documentclass[10pt,a4paper]{article}
\usepackage[titletoc]{appendix}
\usepackage{hyperref}
\begin{document}
...
1
vote
1answer
466 views
toc/hyperref heading issue
The bibliography in my document is "incorporating" the appendices in the TOC and the bookmark structure using hyperref. The page number in TOC for Bibliography is also bigger than all other page ...
10
votes
1answer
858 views
titlesec, hyperref, algorithm2e, and \appendix
When I use titlesec, hyperref, and algorithm2e together, sections after an \appendix are not numbered properly.
\documentclass{article}
\usepackage{titlesec}
\usepackage{hyperref}
...
9
votes
2answers
985 views
\autoref should call sections within the appendix “appendix” not “section”
I make use of autoref thoughout my now rather long document. I have an appendix with sections, though currently a small number, so changes could be made here.
I want references in my document to ...
4
votes
3answers
2k views
Appendices in PDF Outline appear as childs of last section
I'm using the following general outline in book class:
\mainmatter
\include{introduction}
\part{...}
\include{chapter1}
...
\part{...}
...
...