Tagged Questions
0
votes
0answers
18 views
Trouble with cross referencing in the appendices
I'm trying to get the figures and labels in my appendices to have the same format as the rest of the document. In my main thesis.tex file I use:
\backmatter % book mode only
\appendix
...
1
vote
1answer
49 views
Display appendix chapter like: “Appendix”, and sections like “Appendix A: My appendix title”
I wish to make my appendix chapter like: "Appendix", and sections like "Appendix A: My appendix title" "Appendix B: My second title" by writing:
\chapter{Appendix}
\section{My appendix title}
...
1
vote
1answer
68 views
Separate List of Appendices in new page
I need to get a separate List of Appendices in a new page, but I get an error
Undefined control sequence
My code is
\documentclass[12pt,a4paper,oneside]{report}
\usepackage[titletoc]{appendix}
...
3
votes
1answer
39 views
appendix package: making appendix subsections
The problem with the code below is, it treats the Safety section as its own independent section. So in the table of contents, I've got 'Appendices' and 'Safety' as separate sections. I want Safety to ...
3
votes
1answer
72 views
Appendix with titletoc and memoir
I'm trying to customize the TOC layout with titletoc in a memoir document.
The chapter styling works well as below, but if I try the appendix section, I'll get an error for missing number.
I think I ...
1
vote
0answers
56 views
Changing TOC header mid-TOC
In my TOC, on pages where there chapter titles listed, the page header needs to contain the word "CHAPTER". However, on pages where only appendix titles are listed, the TOC header needs to read ...
0
votes
1answer
78 views
Listing appendix entries separately
I have two chapters in the appendix - tables and figures( "Appendix A Figures" and Appendix B Tables"), i want the TOC of the document to show the entries in each. For example, "A.1 This is some ...
4
votes
1answer
111 views
How to make appendix appear in part level of table of contents?
In a book documentclass I would like to have an appendix which appears in the table of contents at the part level. The TOC should look like this:
Preface
Part title
Chapter title
Chapter title
...
5
votes
2answers
52 views
Insert a list of elements twice in the document
I'm writing my thesis and have defined my own appendix command (I am really doing this in a hurry, so there may be ways to do this better). What bothers me right now, is that I must include a list of ...
4
votes
1answer
45 views
How to Change the Title for a Second List of Figures
For my document, I have a List of Figures for the figures contained in the body of the text. This has worked basically according to plan. However, I also need to have a separate List of Figures for ...
1
vote
1answer
84 views
Separate table of contents for appendices
Is it possible to make two seperate table of contents in one report? I want one for the main document and another for the appendices.
I'm writing in the memoir report enviroment.
2
votes
1answer
85 views
Appendix package ToC control
I want to change the alignment of the appendices. I'm using
\documentclass[12pt]{report}
...
\usepackage{titletoc}
\usepackage[toc,titletoc]{appendix}
\usepackage{tocloft}
...
3
votes
1answer
50 views
How to include Appendices' name in LOF?
I would like to know how to show Appendices' name in LOF if they contain figures.
% % % % % % % % % % PACKAGES % % % % % % % % % % % % %
\documentclass[11pt,a4paper]{report}
...
3
votes
1answer
98 views
Appendices' sections at subsection level in TOC
I would like to know how to show appendices' sections (B.1, B.2) at subsection level in TOC.
MWE:
% % % % % % % % % % % % Packages % % % % % % % % % % % % % % %
...
0
votes
1answer
144 views
Bibliography appears as an appendix in ToC in LyX
I want to place the Bibliography after the appendices. So in LyX I mark "Start Appendix Here", insert the appendices, and after that the Bibliography. Now, all appendices appear in the Table of ...
2
votes
1answer
103 views
Appendices at section level in TOC
I would like my appendices to appear in TOC at section level instead of at chapter level.
Like this:
Appendices
A My appendix 1 . . . . . . .
B My appendix 2 . . . . . . .
...
3
votes
2answers
100 views
What variable contains the word “Appendix” when a chapter is an appendix?
I've designed a whole new fancy chapter header layout, and have hard coded the word "Chapter" in there before the chapter number. I just realized now that this won't work because I have an appendix ...
6
votes
1answer
197 views
How to avoid numbering of Appendix?
I have only one appendix in my report. But it appears in the table of contents and title page as Appendix A. How can I change it to APPENDIX?
1
vote
1answer
120 views
Appendix trouble [closed]
I am in trouble with my appendix. I include
\appendix<br>
\chapter{Appendix Title 1}
\section{Section 1}
\section{Section 2}
but in the TOC does not show the letters. The TOC is just this...
...
3
votes
1answer
155 views
Creating a new list of appendices with tocloft
I just implemented Mike Renfro's solution from here, but the content in the list of appendices also gets listed in the toc, which should not be the case. How would one ensure this is avoided? Below is ...
5
votes
1answer
165 views
Appendix problem in ToC
MWE is here:
\documentclass[12pt,letter]{report}
\usepackage[titletoc]{appendix}
\begin{document}
\tableofcontents
\appendix
\chapter{T.F}
some text
\chapter{C.L}
some more text
\end{document}
In ...
3
votes
1answer
199 views
TOC “Appendices” wrongly entry comes after 1st appendix entry when use \include
I use the appendix package with its toc option for a book document. If the first of several appendices is inserted by using \include, then the "Appendices" heading in the TOC incorrectly appears after ...
6
votes
1answer
217 views
Appendix at the end of Chapter
I am writing a book and would like to have appendices at the end of each chapter, for instance appendices at the end of Chapter 2 should look like:
Appendix 2A Derivation of MMSE Equation
...
6
votes
1answer
243 views
Remove dots in toc for a particular entry like appendix
I am writing my thesis and use the book class under PhDthesisPSnPDF.
I would like to remove the dots in table of contents only for a particular entry like "Appendix". All the entries for chapter and ...
4
votes
1answer
607 views
Table of Contents inside an Appendices Environment
I am trying to create a table of contents inside the appendices environment, however I am unable to do so. In the example below I want a table of contents for Section1.
I have tried the minitoc but ...
5
votes
1answer
217 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
...
3
votes
1answer
201 views
Appendix pages placement and layout
I use \chapter{Appendix I} to create an Appendix I title however it appears as shown below:
Then I use \chapter*{Appendix I} to remove the Chapter 10 part but when I do that the Appendix I no ...
4
votes
2answers
232 views
How do I number appendix longtables and include them in the *ToC*?
I am writing my PhD dissertation.
I have many appendices (like 6?), mostly tables.
As it happens automatically for tables and figures, I'd like to get a label plus progressive number before I ...
4
votes
1answer
326 views
Colon after appendix number
How do I get a ":" to show up after Appendix in my ToC.
Right now I have
APPENDIX A. Classification experiments
but I want:
APPENDIX A: Classification experiments
In the preamble I am ...
5
votes
1answer
218 views
Remove entries from short ToC but not from long ToC
Please find a minimal example illustrating this question below.
The problem is this:
There is only one appendix chapter, which is divided into several paragraphs. These paragraphs should appear in ...
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 ...
2
votes
1answer
280 views
Appendices title before list of appendices
My table of contents has the following form:
1. Foo ............................. 1
2. Boo ............................. 2
A. something 1 ..................... 3
B. something 2 ..................... ...
3
votes
1answer
478 views
How to make appendices behave like sections in ToC
I would like my appendices to behave like sections under the ToC but keep them as chapters in my document.
Here is a MWE of my current structure:
\documentclass[11pt,a4paper,oneside,openright]{book}
...
2
votes
1answer
260 views
Turn off appendix header in list of figures/tables when there are no tables or figures in any appendix
My list of tables and list of figures are showing correctly for my main document, but after the main list I get a header for the appendix that looks like:
4.1 Last ...
3
votes
1answer
546 views
Table of contents and appendices
I am writing a "memoire" about a research project to end my undergraduate studies, but I am not able to format the sections and the table of contents as I would like to do. My paper, written with the ...
0
votes
0answers
231 views
List of figures and tables is empty when including appendix [closed]
I'm having a weird problem compiling a thesis, in which the List of Figures and Tables is empty whenever I include appendices. After my abstract I have:
\tableofcontents
\listoftables
\listoffigures
...
2
votes
2answers
769 views
Add chapter/appendix prefix in table of contents of scrbook with correct appendix running head
My first question is how to add the chapter or appendix prefix in the table of contents of scrbook class instead of the its default appearance.
For example, in the figure below, I want to change the ...
6
votes
2answers
1k views
Appendix in LaTeX
I have the following document:
\documentclass[11pt,a4paper,twoside]{book}
\usepackage[spanish,activeacute]{babel}
\usepackage[titletoc]{appendix}
\begin{document}
\setcounter{tocdepth}{2}
...
4
votes
3answers
1k views
Table of Contents with Chapter and Appendix
I'm using this code to get word Chapter in TOC before each chapter.
\documentclass[a4paper]{book}
\usepackage{tocloft,calc}
\renewcommand{\cftchappresnum}{Chapter }
...
6
votes
1answer
643 views
Apéndices (Appendix spanish accent)
Dear friends: there is a problem with appendix and ápendice.
I have a scrbook document and I use appendix package,
\usepackage[title, titletoc]{appendix}
because I like the word "Apéndice" in ...
6
votes
1answer
362 views
\chaptername is used even for appendix chapters in ToC
I have searched for something to resolve a problem that has shown up here:
How do I get \chaptername to appear in the table of contents?
I have tried the code from that thread. But I got an issue, ...
7
votes
2answers
528 views
Second table of contents only for annexes
I'd like to have in my report a table of contents from introduction to conclusion and another between the conclusion and the first annexe. This latter only for annexes :
- Table of contents
- 1. ...
6
votes
1answer
498 views
Displaying “Appendix” in a section inside subappendices environment
I am using scrreprt from KOMA packages, the appendix package, and the arsclassica package.
I'd like to add "Appendix" before the number of an appendix to a chapter.
If I use scrreprt and the ...
2
votes
1answer
392 views
Word “Appendix” in ToC with memoir class
There are a lot of Q'n'As around this topic but I could find the answer neither here nor in the memoir manual. Help me please.
I'd like to modify the ToC in such a way, that the word "Appendix" ...
2
votes
2answers
200 views
apphead appears in TOC after first appendix
In my thesis, I do this:
\include{main/chapter1}
\include{main/chapter2}
\appendix
\noappendicestocpagenum
\addappheadtotoc
\include{main/appendixchapter1}
I should be getting the line "Appendices" ...
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 ...
7
votes
1answer
1k views
Turn off List of Figures for Appendix material
How do I prevent figures in the Appendix from appearing in the list of figures?
It seems that after the command \appendix the numbering automatically starts.
I've tried leaving the first part in ...
3
votes
2answers
530 views
Table of Contents and subappendices
Using the report document class, how can I create a table of contents that looks like:
Chapter 1: Title
1.1 Title
1.2 Title
Appendices
1.A
1.B
Chapter 2: Title
2.1 Title
2.2 Title
...
8
votes
2answers
2k views
Table of Contents with “Chapter” and per-chapter “Appendix”
How do I create a table of contents that looks like:
Chater 1 Name
1.1 section
1.2 section
Appendix A
Appendix B
Chapter 2 Name
2.1 section
2.2 section
Appendix A
...
5
votes
2answers
749 views
List of appendices with tocloft and memoir
I found a very nice example showing how to create a list of appendices here: How to get a list of appendices? but it doesn't seem to work with the memoir document class. I get the error message ...