Tagged Questions
0
votes
1answer
39 views
Is it possible to add hidden text to a caption that only appears in the table of figures? [duplicate]
I want to add additional information about some figures that should only show up in the list of figures. Is this possible?
2
votes
0answers
50 views
Numbering figures and tables in part
Here is the deal: I'm writing my thesis and I divided the thesis into 3 parts, each part had 2 chapters.
At the beginning of each part, I added two pages of introduction. However, the numbering of ...
4
votes
1answer
75 views
List of Figures sorted by Figure number
I am using
\usepackage{imakeidx}
\usepackage{hyperref}
and the command \listoffigures to get the list of figures. Some figures are double-column, some are single-column, and LaTeX does not ...
3
votes
1answer
97 views
Why use \listoffigures \listoftables [closed]
Why do people include "Lists of Figures" and "Lists of Tables" in their theses/books? (as generated by \listoffigures, \listoftables, etc.)
Besides the obvious reason that they take up space and ...
1
vote
1answer
93 views
Remove individual entries from List of Tables?
This is my first post here, so the TeX code may not appear as desired, but I'll do what I can to provide a MWE.
I want to be able to suppress the appearance of individual figures/tables in the list ...
0
votes
0answers
102 views
TocLoft and subcaption conflicts [closed]
I use subcaption package to make subfigures.
Code sample:
\begin{figure}[h]
\centering
\begin{subfigure}[t]{0.5\textwidth}
\centering
\includegraphics[width=\textwidth]{v643.png}
\caption{V-643}
...
4
votes
3answers
90 views
Can listoffigures use the long caption instead?
Throughout my document I have figures with captions set like this example:
\caption[Surface elevation change for Antarctica and Greenland]{Rate of change of surface elevation for Antarctica and ...
5
votes
1answer
50 views
color an entry in the list of figures
I have a command that prints an image and will be used inside a certain environment.
First I run a test if the file exists and is a valid image file
(see this question for the definition of ...
1
vote
1answer
62 views
Merge items in list of floats
My seraching creativity didn't provide useable results so far, so I have to ask this question...
I have a group of related (figure-like) item types (music examples) which I include in different ways:
...
3
votes
1answer
118 views
memoir - sidecaption ignore list of figures
There is a method presented here on how to selectively ignore list of figures. Is there an equivalent method for sidecaptions in memoir?
MWE:
\documentclass{memoir}
\usepackage[english]{babel}
...
3
votes
2answers
132 views
Caption on side by side matrices
I have two matrices side by side, like this:
\[
\left[\begin{array}{cc}
a & b \\
c & d
\end{array}\right] \qquad
\left[\begin{array}{cc}
e & f \\
g & h
...
6
votes
1answer
223 views
Formatting list of custom floats in classic thesis
I am writing a document using classicthesis package, where I have some algorithms written with the clrscode package. I used package float to create a new float named "algorithm". However when I print ...
4
votes
1answer
117 views
How to list supplementary figures in the list of figures?
I created several supplementary figures in my thesis using the newfloat package as below:
\usepackage{newfloat}
\DeclareFloatingEnvironment[name={Supplementary Figure}]{suppfigure}
When I create ...
8
votes
1answer
103 views
Figures Grouped at the End
A requirement for a paper I'm writing is that all figures occur at the end of the document, with one figure per page, and with a page of figure captions preceding the pages of figures.
Is there any ...
4
votes
1answer
87 views
How to eliminate numbers on left side of LoF
I would like to get rid of the numbers on the left side of my LoF, like in this example. I tried \def\figureformat{} but that did not do anything. However, my figures are really full-page pictures ...
5
votes
1answer
539 views
How can I create a Continued Figure Caption?
I have two figures with somehow the same caption with the following code:
\begin{figure}[!ht]\centering
\includegraphics[height=18cm]{pic1}
\caption{caption}
\end{figure}
\addtocounter{figure}{-1}
...
2
votes
1answer
169 views
Combining subfloat and newfloat packages for sublistings environment
I am using the subfloat package to group related figures; they show up like 1a, 1b, etc. in the List of Figures.
Now, I want to define a new listing float using the newfloat package, which generates ...
9
votes
1answer
169 views
Numbering a figure with a symbol in a way that is compatible with \label and \ref
In a long paper, full of figures labeled as usual, there are two figures which I would like to single out and label with symbols. For instance, I would like to have them labeled Figure $\dag$ and ...
10
votes
2answers
661 views
Why are \listof{}{} and \listoffigures styled differently?
I'm writing my thesis and I have certain code-snippets to show. I'm using the the listings package embedded in a custom float environment to display them.
To list them in an index at the beginning of ...
5
votes
2answers
345 views
How to add custom floats to \listoffigures?
I created custom float objects using the float package to draw stuff with tikz.
\usepackage{float}
\floatstyle{plain}
\newfloat{tkizfloat}{htb}{lof}
\floatname{tkizfloat}{Figure}
Is there any ...
1
vote
1answer
354 views
How to modify the Table of Contents to add the words Chapter, Appendix, Figure, Table
I am trying to get the words Chapter, Appendix, Figure and Table into the table of contents. The thesis requirements can be found here ...
2
votes
1answer
94 views
How can I prevent the \listof command from the float package scrambling my headers?
I'm using the minted package, which uses the float package. When I add the 'List of Listings' in my thesis, the \listoflistings command calls the \listofcommand from the float package.
My problem is ...
7
votes
2answers
140 views
How can I list items created with the float package in the ToC
I created a new type of float using the float package.
\floatstyle{plaintop}
\newfloat{recommendation}{htbp}{lop}[section]
\floatname{recommendation}{Recommendation}
I would like it listed in the ...
2
votes
2answers
102 views
How to embed figure short descriptions (as would be displayed in the List of Figures) within the table of contents in LaTeX?
The document I'm writing has all the figures in Appendix A (since there is a lot of source code included in latter appendixes, it would not make sense to put the figures as the final part of 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 ...
10
votes
1answer
1k views
List of figures: source below image caption?
I'm relatively new to LaTeX and currently working on a paper. In my list of figures, I'd like to have a structure like this:
Fig. 1: <Title of figure> . . . 1
...
1
vote
2answers
296 views
How to make table with caption appearing on \listoftables without \begin{table} environment? [duplicate]
Possible Duplicate:
Label and caption without float
Create caption without float AND without caption-package?
Here is an example of LaTeX document being compiled with pdflatex having
...
2
votes
1answer
900 views
Ignore figure for list of figures
I'd like to include some figures in my LaTeX document just like every other figure but don't have exactly these figures included in the list of figures.
Since I couldn't find a solution I have to ask ...
5
votes
1answer
212 views
Grouping figures in \listoffigures
Is it possible to group together several figures in the List of Figures. For example a time step sequence where there are 4 or 5 different figures would only have one entry.
3
votes
1answer
794 views
figures in sidewaysfigure environment are not listed in List of Figures
I was writing my thesis and found that all figures I included in sidewaysfigure environment are not listed in \listoffigures.
How can I make those figures listed in List of Figures?
What I did is ...
0
votes
1answer
325 views
Incorrect page number in List of Listings
The problem I'm having is that page numbers, in a List of Listings, are frequently off by one page.
I'm using the listings package and I have a List of Listings in the beginning of the document, ...
2
votes
2answers
96 views
How can I have figures identified as tables?
My paper includes several graphs that are all much too long to make as tables, so I made them figures (copy and paste from spreadsheet to paint). My paper has to include a list of figures and a list ...
7
votes
2answers
173 views
Have some figures show up in two listofs: list of figures and list of special figures
I have a number of figures in my dissertation. Out of those figures, there are some that I want to be included simultaneously in two listof's: the standard "List of Figures" and a non-standard "List ...
3
votes
1answer
420 views
Set width of LaTeX float # in List of X
Using the LaTeX float package, I've created a new float:
\newfloat{schema}{htb}{los}[chapter]
\floatname{schema}{{Schema}}
The list of schemas at the beginning of my document is created with the ...
1
vote
3answers
125 views
labeling tables per chapter both in the body and in toc [duplicate]
Possible Duplicate:
Continuous v. per-chapter/section numbering of figures, tables, and other document elements
How can I label the tables per chapter in document class report rather than ...
7
votes
2answers
272 views
Create plain CSV list of pages with/without figures
I'm wondering if there's an easy way to have LaTeX output two lists:
of pages containing and
of pages not containing figures and/or other color objects.
I'd like to print color pages on a color ...
6
votes
1answer
6k views
Article appendix with sections and toc entries in the form “Appendix A”
I have been trying to get the appendix for my thesis done.
I've read a lot about it and as always you can chose between a fiddly way and a magic package that doas the job to solve a problem (I usually ...
4
votes
2answers
287 views
Commutative Diagrams in Table of Figures
Should one treat commutative diagrams as figures within the figure environment? If not, is there a way to add a label/caption and have the page number and caption show in the Table of Figures (without ...
12
votes
1answer
1k views
Adding word 'Table' before each entry in list of tables
I need to prefix each entry in list of tables and figures with appropriate text - table or figure for each. Also I need to remove chapter numbers from list, because tables are numbered consequently ...
8
votes
1answer
284 views
How do I create a new command \listofcodes in latex?
In addition to tables and figures, I have a bunch of code pieces. Just like follows:
\begin{figure}
\lstinputlisting[
language=C++, breaklines=true,
keywordstyle=\color{blue},
...
10
votes
1answer
2k views
Captions for figures in \listoffigures
When I use \listoftables and \listoffigures I get in the list long captions that appear next to the tables/figures.
I would like to use short captions for this list which summarize these captions. Is ...
10
votes
1answer
455 views
Cite in the caption of a graphic but not in \listoffigures?
Sometimes I'd like to cite the reference in the caption of a graphic. But I want to avoid that this citation is displayed in the \listoffigures. How can I achieve that?
Fore example with this code:
...
8
votes
2answers
549 views
Using an image as a table
I have an image containing tabular data and would not like to convert this to a real table. What I do want is for this image to have a proper caption and be included in the listoftables.
Is it ...
7
votes
1answer
567 views
Replicate Figure w/out Inserting New Entry in List of Figures
I would like to replicate a figure in Chapter 3 within Chapter 6 such that the figure is displayed and optionally, it has the caption and Figure number of the figure in Chapter 3. If that is not ...
17
votes
3answers
819 views
Photograph credits in LaTeX
Is there any convenient package/way to link photograph credits with a figure, and then generate a kind of \listoffigures?
Have you any other solution than generating the .lof temporary file, and ...