Tagged Questions
4
votes
1answer
59 views
How do I get the table of contents, list of figures and list of tables to have the header I specify
I used \renewcommand\contentsname{\Large{TABLE OF CONTENTS}} (similar for list of figures and list of tables) to obtain headers that were centered at the top of the page, not bold and capitalized. ...
3
votes
1answer
68 views
Multiple listings styles
In using the listings package, how can I have a distinct \lstlistingname value for each type of listing.
Lets say my document has C++, R and Pseudo listings, and I would like the \lstlistingname ...
7
votes
3answers
98 views
Write “chapter” before list of figures
if I use the \listoffigures command LaTeX creates a new chapter (I'm using the book class), but there is no chapter heading. Is it like it uses \chapter*{List of figures}. Of course this is what we ...
1
vote
1answer
65 views
Change Bibliography name to “References” and add it to TOC [duplicate]
As title suggests. I have the following in my referencing section :
\documentclass[12pt,a4paper]{report}
.
.
.
\bibliographystyle{abbrv}
\bibliography{library}
And it prints :
I would like ...
4
votes
1answer
44 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 ...
3
votes
2answers
96 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 ...
2
votes
1answer
179 views
babel and \contentsname, how to add extra customization?
This is what I'm trying to do:
\renewcommand{\contentsname}{
\vspace{-8mm}
{\Huge Table of Contents}\vspace{-3mm}
\rule{\linewidth}{0.5mm} \\[-4mm]
}
Using babel, I can get this code to work:
...
5
votes
2answers
155 views
Not having “Chapter” appear in chapter names
If, in amsbook, I write something like
\chapter{My great chapter}
it appears in the text as
Chapter 1. My great chapter
I would like to make it appear simply as
1. My great chapter
Anyone have ...
11
votes
1answer
822 views
Bibliography not in ToC when using biblatex/biber
I just managed to switch from using BibTeX to biblatex with the biber backend. My references now appear how I want. However I have two new issues.
1) How do I change "Bibliography" to references? The ...
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
360 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, ...
0
votes
1answer
171 views
How to change Table of Contents title from “Contents” to X using memoir? [duplicate]
Possible Duplicate:
How to change the title of ToC?
The default Table of Contents title is "Contents". How would I change "Contents" to something else, e.g., "Chapters"? I'm using the ...
4
votes
1answer
398 views
Changing “Contents” name in revtex4-1
I need to change the way "Contents" appears in \tableofcontents in a revtex4-1 document.
Other answers indicate \renewcommand{\contentsname}{changes!}, however when I uncomment any of those in
...
1
vote
2answers
766 views
Change chapter name in ToC
I need to change "Chapter" word to, for example, "Heading".
I tried to use command \renewcommand{\chaptername}{Heading} but it changed chapter name only in text, but in ToC it's still "Chapter".
How ...
1
vote
2answers
777 views
Creating Table of Contents / Section Headings
I found this article and would like to know how can one create a template (generic) to accomplish this. It would be great to implement a (generic) template to be able to make it for a table of ...
12
votes
1answer
4k views
How to change the title of ToC?
I need to change default title of ToC. Is it possible with titlesec package?
Here is my MWE:
\documentclass{book}
\usepackage{titlesec}
...
5
votes
3answers
564 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
...