Insert list of figures in the table of contentsHow to include list of abbreviations in the table of...
How is it possible to have an ability score that is less than 3?
Do infinite dimensional systems make sense?
What would happen to a modern skyscraper if it rains micro blackholes?
Can a Cauchy sequence converge for one metric while not converging for another?
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
Modeling an IP Address
Is it inappropriate for a student to attend their mentor's dissertation defense?
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
How much of data wrangling is a data scientist's job?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
Which country benefited the most from UN Security Council vetoes?
Was any UN Security Council vote triple-vetoed?
What does "Puller Prush Person" mean?
Why is consensus so controversial in Britain?
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
What's the point of deactivating Num Lock on login screens?
Decision tree nodes overlapping with Tikz
Roll the carpet
How can bays and straits be determined in a procedurally generated map?
Revoked SSL certificate
Why can't we play rap on piano?
Can I ask the recruiters in my resume to put the reason why I am rejected?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Operational amplifier as a comparator at high frequency
Insert list of figures in the table of contents
How to include list of abbreviations in the table of contentsAdd Contents, List of Figures into TOCLiterature and Table of ContentsTable of ContentsHow can I get list of symbols, abbreviations, abstract, acknowledgements into Table of Contents before Introduction, and under roman numerals?How to change the title of ToC?Adding headings in contents causes links to wrong pageFigures: Can the list of figures be embedded into the table of contents?wrong numbering of listoffigures and listoftables PARTIALLY SOLVEDProblem with aknowledgement, etc in Table of contentsWrong page number for List of Figures within Table of ContentsHow to embed figure short descriptions (as would be displayed in the List of Figures) within the table of contents in LaTeX?header and footer not appearing on first page of contents, list of figures and list of figuresFigures: Can the list of figures be embedded into the table of contents?figbib package: How to remove List of Figures from Table of Contents?Remove numbering from Table of Contents, List of Figures, List of TablesLatex manually insert List of Abbreviations in ContentsList of Figures at the end of ContentsCapitalize 'List of Tables' and 'List of Figures' in Table of ContentsHow to have separate list of Appendix figures?
Is it possible to create a list of all the figures at the end of a document (this I can do) and make it appear in the table of contents?
So in the the table of content there will be a line saying List of figures ... 19 for example?
table-of-contents
add a comment |
Is it possible to create a list of all the figures at the end of a document (this I can do) and make it appear in the table of contents?
So in the the table of content there will be a line saying List of figures ... 19 for example?
table-of-contents
Please, provide also the information about the class you're using.
– egreg
Mar 18 '12 at 17:28
add a comment |
Is it possible to create a list of all the figures at the end of a document (this I can do) and make it appear in the table of contents?
So in the the table of content there will be a line saying List of figures ... 19 for example?
table-of-contents
Is it possible to create a list of all the figures at the end of a document (this I can do) and make it appear in the table of contents?
So in the the table of content there will be a line saying List of figures ... 19 for example?
table-of-contents
table-of-contents
edited Mar 18 '12 at 17:30
lockstep
193k53593723
193k53593723
asked Mar 18 '12 at 17:14
lpostulalpostula
5612613
5612613
Please, provide also the information about the class you're using.
– egreg
Mar 18 '12 at 17:28
add a comment |
Please, provide also the information about the class you're using.
– egreg
Mar 18 '12 at 17:28
Please, provide also the information about the class you're using.
– egreg
Mar 18 '12 at 17:28
Please, provide also the information about the class you're using.
– egreg
Mar 18 '12 at 17:28
add a comment |
3 Answers
3
active
oldest
votes
The List of Figures is produced with listoffigures; you have to manually add it to the table of contents, so it should be preceded by cleardoublepage in order to ensure that the page reference is correct. Uncomment the phantomsection line if you're using hyperref:
cleardoublepage
% phantomsection
addcontentsline{toc}{chapter}{listfigurename}
listoffigures
6
I prefer loading thetocbibindpackage (or using special class faetures) because the LoF shouldn't be always preceded by a page break if one uses thearticleclass.
– lockstep
Mar 18 '12 at 17:30
This work but is there a way to change the listfigurename to something else?
– lpostula
Mar 18 '12 at 17:32
1
@kasmanit Have a look at tex.stackexchange.com/questions/28516/…
– lockstep
Mar 18 '12 at 17:35
@kasmanit That's why I usedlistfigurename, so that you can change its meaning as outlined in the question which lockstep pointed to.
– egreg
Mar 18 '12 at 17:42
4
Whoever reads this - remember if your document doesn't have chapters (e.g. anarticle) - you'll need to replace{chapter}with{section}or something similar.
– einpoklum
Sep 13 '17 at 18:08
add a comment |
This answer depends on your document class and some related packages.
- If you are using a standard class you can use the package
tocbibind
- If you are using a KOMA-script class you can use the option
listof=totoc. - If you want to add the entry manual you can use the command
addcontentsline
- If you are using the class memoir the command
listoffigurescreates an entry in the table of contents.
tocbibindhelped, thanks! Manually withaddcontentslinedid generate a wrong numbering.
– swiesend
Aug 19 '18 at 13:52
add a comment |
There's a really simple way to do this. Maybe the last comment meant that, but I'm not sure.
Change the name of listofigures by using renewcommandlistfigurename{}. So you can easy use section{Abbildungsverzeichnis} to insert the list in your table of contents.
5
This is very risky, since it depends on the document class. For example,reportprintslistoffiguresas achapter*, not asection. Moreover, your approach will provide a numbered section (not common with the LoF/LoT/ToC front matter). Finally, even if you removelistfigurename, you'll be setting a sectional unit twice with your approach.
– Werner
Jan 2 '14 at 19:33
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f48509%2finsert-list-of-figures-in-the-table-of-contents%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The List of Figures is produced with listoffigures; you have to manually add it to the table of contents, so it should be preceded by cleardoublepage in order to ensure that the page reference is correct. Uncomment the phantomsection line if you're using hyperref:
cleardoublepage
% phantomsection
addcontentsline{toc}{chapter}{listfigurename}
listoffigures
6
I prefer loading thetocbibindpackage (or using special class faetures) because the LoF shouldn't be always preceded by a page break if one uses thearticleclass.
– lockstep
Mar 18 '12 at 17:30
This work but is there a way to change the listfigurename to something else?
– lpostula
Mar 18 '12 at 17:32
1
@kasmanit Have a look at tex.stackexchange.com/questions/28516/…
– lockstep
Mar 18 '12 at 17:35
@kasmanit That's why I usedlistfigurename, so that you can change its meaning as outlined in the question which lockstep pointed to.
– egreg
Mar 18 '12 at 17:42
4
Whoever reads this - remember if your document doesn't have chapters (e.g. anarticle) - you'll need to replace{chapter}with{section}or something similar.
– einpoklum
Sep 13 '17 at 18:08
add a comment |
The List of Figures is produced with listoffigures; you have to manually add it to the table of contents, so it should be preceded by cleardoublepage in order to ensure that the page reference is correct. Uncomment the phantomsection line if you're using hyperref:
cleardoublepage
% phantomsection
addcontentsline{toc}{chapter}{listfigurename}
listoffigures
6
I prefer loading thetocbibindpackage (or using special class faetures) because the LoF shouldn't be always preceded by a page break if one uses thearticleclass.
– lockstep
Mar 18 '12 at 17:30
This work but is there a way to change the listfigurename to something else?
– lpostula
Mar 18 '12 at 17:32
1
@kasmanit Have a look at tex.stackexchange.com/questions/28516/…
– lockstep
Mar 18 '12 at 17:35
@kasmanit That's why I usedlistfigurename, so that you can change its meaning as outlined in the question which lockstep pointed to.
– egreg
Mar 18 '12 at 17:42
4
Whoever reads this - remember if your document doesn't have chapters (e.g. anarticle) - you'll need to replace{chapter}with{section}or something similar.
– einpoklum
Sep 13 '17 at 18:08
add a comment |
The List of Figures is produced with listoffigures; you have to manually add it to the table of contents, so it should be preceded by cleardoublepage in order to ensure that the page reference is correct. Uncomment the phantomsection line if you're using hyperref:
cleardoublepage
% phantomsection
addcontentsline{toc}{chapter}{listfigurename}
listoffigures
The List of Figures is produced with listoffigures; you have to manually add it to the table of contents, so it should be preceded by cleardoublepage in order to ensure that the page reference is correct. Uncomment the phantomsection line if you're using hyperref:
cleardoublepage
% phantomsection
addcontentsline{toc}{chapter}{listfigurename}
listoffigures
answered Mar 18 '12 at 17:27
egregegreg
731k8919303253
731k8919303253
6
I prefer loading thetocbibindpackage (or using special class faetures) because the LoF shouldn't be always preceded by a page break if one uses thearticleclass.
– lockstep
Mar 18 '12 at 17:30
This work but is there a way to change the listfigurename to something else?
– lpostula
Mar 18 '12 at 17:32
1
@kasmanit Have a look at tex.stackexchange.com/questions/28516/…
– lockstep
Mar 18 '12 at 17:35
@kasmanit That's why I usedlistfigurename, so that you can change its meaning as outlined in the question which lockstep pointed to.
– egreg
Mar 18 '12 at 17:42
4
Whoever reads this - remember if your document doesn't have chapters (e.g. anarticle) - you'll need to replace{chapter}with{section}or something similar.
– einpoklum
Sep 13 '17 at 18:08
add a comment |
6
I prefer loading thetocbibindpackage (or using special class faetures) because the LoF shouldn't be always preceded by a page break if one uses thearticleclass.
– lockstep
Mar 18 '12 at 17:30
This work but is there a way to change the listfigurename to something else?
– lpostula
Mar 18 '12 at 17:32
1
@kasmanit Have a look at tex.stackexchange.com/questions/28516/…
– lockstep
Mar 18 '12 at 17:35
@kasmanit That's why I usedlistfigurename, so that you can change its meaning as outlined in the question which lockstep pointed to.
– egreg
Mar 18 '12 at 17:42
4
Whoever reads this - remember if your document doesn't have chapters (e.g. anarticle) - you'll need to replace{chapter}with{section}or something similar.
– einpoklum
Sep 13 '17 at 18:08
6
6
I prefer loading the
tocbibind package (or using special class faetures) because the LoF shouldn't be always preceded by a page break if one uses the article class.– lockstep
Mar 18 '12 at 17:30
I prefer loading the
tocbibind package (or using special class faetures) because the LoF shouldn't be always preceded by a page break if one uses the article class.– lockstep
Mar 18 '12 at 17:30
This work but is there a way to change the listfigurename to something else?
– lpostula
Mar 18 '12 at 17:32
This work but is there a way to change the listfigurename to something else?
– lpostula
Mar 18 '12 at 17:32
1
1
@kasmanit Have a look at tex.stackexchange.com/questions/28516/…
– lockstep
Mar 18 '12 at 17:35
@kasmanit Have a look at tex.stackexchange.com/questions/28516/…
– lockstep
Mar 18 '12 at 17:35
@kasmanit That's why I used
listfigurename, so that you can change its meaning as outlined in the question which lockstep pointed to.– egreg
Mar 18 '12 at 17:42
@kasmanit That's why I used
listfigurename, so that you can change its meaning as outlined in the question which lockstep pointed to.– egreg
Mar 18 '12 at 17:42
4
4
Whoever reads this - remember if your document doesn't have chapters (e.g. an
article) - you'll need to replace {chapter} with {section} or something similar.– einpoklum
Sep 13 '17 at 18:08
Whoever reads this - remember if your document doesn't have chapters (e.g. an
article) - you'll need to replace {chapter} with {section} or something similar.– einpoklum
Sep 13 '17 at 18:08
add a comment |
This answer depends on your document class and some related packages.
- If you are using a standard class you can use the package
tocbibind
- If you are using a KOMA-script class you can use the option
listof=totoc. - If you want to add the entry manual you can use the command
addcontentsline
- If you are using the class memoir the command
listoffigurescreates an entry in the table of contents.
tocbibindhelped, thanks! Manually withaddcontentslinedid generate a wrong numbering.
– swiesend
Aug 19 '18 at 13:52
add a comment |
This answer depends on your document class and some related packages.
- If you are using a standard class you can use the package
tocbibind
- If you are using a KOMA-script class you can use the option
listof=totoc. - If you want to add the entry manual you can use the command
addcontentsline
- If you are using the class memoir the command
listoffigurescreates an entry in the table of contents.
tocbibindhelped, thanks! Manually withaddcontentslinedid generate a wrong numbering.
– swiesend
Aug 19 '18 at 13:52
add a comment |
This answer depends on your document class and some related packages.
- If you are using a standard class you can use the package
tocbibind
- If you are using a KOMA-script class you can use the option
listof=totoc. - If you want to add the entry manual you can use the command
addcontentsline
- If you are using the class memoir the command
listoffigurescreates an entry in the table of contents.
This answer depends on your document class and some related packages.
- If you are using a standard class you can use the package
tocbibind
- If you are using a KOMA-script class you can use the option
listof=totoc. - If you want to add the entry manual you can use the command
addcontentsline
- If you are using the class memoir the command
listoffigurescreates an entry in the table of contents.
edited Oct 12 '12 at 18:17
answered Mar 18 '12 at 17:28
Marco DanielMarco Daniel
78.5k13223388
78.5k13223388
tocbibindhelped, thanks! Manually withaddcontentslinedid generate a wrong numbering.
– swiesend
Aug 19 '18 at 13:52
add a comment |
tocbibindhelped, thanks! Manually withaddcontentslinedid generate a wrong numbering.
– swiesend
Aug 19 '18 at 13:52
tocbibind helped, thanks! Manually with addcontentsline did generate a wrong numbering.– swiesend
Aug 19 '18 at 13:52
tocbibind helped, thanks! Manually with addcontentsline did generate a wrong numbering.– swiesend
Aug 19 '18 at 13:52
add a comment |
There's a really simple way to do this. Maybe the last comment meant that, but I'm not sure.
Change the name of listofigures by using renewcommandlistfigurename{}. So you can easy use section{Abbildungsverzeichnis} to insert the list in your table of contents.
5
This is very risky, since it depends on the document class. For example,reportprintslistoffiguresas achapter*, not asection. Moreover, your approach will provide a numbered section (not common with the LoF/LoT/ToC front matter). Finally, even if you removelistfigurename, you'll be setting a sectional unit twice with your approach.
– Werner
Jan 2 '14 at 19:33
add a comment |
There's a really simple way to do this. Maybe the last comment meant that, but I'm not sure.
Change the name of listofigures by using renewcommandlistfigurename{}. So you can easy use section{Abbildungsverzeichnis} to insert the list in your table of contents.
5
This is very risky, since it depends on the document class. For example,reportprintslistoffiguresas achapter*, not asection. Moreover, your approach will provide a numbered section (not common with the LoF/LoT/ToC front matter). Finally, even if you removelistfigurename, you'll be setting a sectional unit twice with your approach.
– Werner
Jan 2 '14 at 19:33
add a comment |
There's a really simple way to do this. Maybe the last comment meant that, but I'm not sure.
Change the name of listofigures by using renewcommandlistfigurename{}. So you can easy use section{Abbildungsverzeichnis} to insert the list in your table of contents.
There's a really simple way to do this. Maybe the last comment meant that, but I'm not sure.
Change the name of listofigures by using renewcommandlistfigurename{}. So you can easy use section{Abbildungsverzeichnis} to insert the list in your table of contents.
edited Jan 2 '14 at 19:13
Torbjørn T.
158k13256445
158k13256445
answered Jan 2 '14 at 19:11
BenniBenni
311
311
5
This is very risky, since it depends on the document class. For example,reportprintslistoffiguresas achapter*, not asection. Moreover, your approach will provide a numbered section (not common with the LoF/LoT/ToC front matter). Finally, even if you removelistfigurename, you'll be setting a sectional unit twice with your approach.
– Werner
Jan 2 '14 at 19:33
add a comment |
5
This is very risky, since it depends on the document class. For example,reportprintslistoffiguresas achapter*, not asection. Moreover, your approach will provide a numbered section (not common with the LoF/LoT/ToC front matter). Finally, even if you removelistfigurename, you'll be setting a sectional unit twice with your approach.
– Werner
Jan 2 '14 at 19:33
5
5
This is very risky, since it depends on the document class. For example,
report prints listoffigures as a chapter*, not a section. Moreover, your approach will provide a numbered section (not common with the LoF/LoT/ToC front matter). Finally, even if you remove listfigurename, you'll be setting a sectional unit twice with your approach.– Werner
Jan 2 '14 at 19:33
This is very risky, since it depends on the document class. For example,
report prints listoffigures as a chapter*, not a section. Moreover, your approach will provide a numbered section (not common with the LoF/LoT/ToC front matter). Finally, even if you remove listfigurename, you'll be setting a sectional unit twice with your approach.– Werner
Jan 2 '14 at 19:33
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f48509%2finsert-list-of-figures-in-the-table-of-contents%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please, provide also the information about the class you're using.
– egreg
Mar 18 '12 at 17:28