Tagged Questions
3
votes
1answer
31 views
Figure numbering with section number, problem with subfigure
I changed my figure numbering to section-style numbering for my thesis:
\numberwithin{figure}{section}
That's fine, but the only problem that remains in the following MWE:
...
3
votes
1answer
38 views
Labels do not increment
In my document, I have a lot of short case studies, which I would like to number, just like figures. So I am using this:
\subsubsection{Case study \ref{cs:this}: Title}
\begin{figure}
\label{cs:this} ...
3
votes
1answer
50 views
Continuous numbering of custom float with caption package
I defined a custom environment that allows me to define mathematical problem statements and puts them in a box. Since I have quite a few of them in my report, I decided to properly caption them, which ...
0
votes
0answers
32 views
LaTeX numbering one figure incorrectly (Figure 2 instead of Figure 2.1) [duplicate]
All of my figures seem to be referencing correctly except for one. I have
Text text text \ref{fig:label}.
\begin{figure}
\begin{center}
<TikZ Drawing>
\end{center}
...
5
votes
1answer
77 views
How can I give the same figure number to five different figures on five different pages?
How can I give the same figure number to five different figures on five different pages using latex? For example, fig. 1.1, fig. 1.1 cont'd (player I), fig. 1.1 cont'd (player II), fig. 1.1 cont'd ...
4
votes
2answers
66 views
Assign numbering of theorems to figures
How can I assign numbering of theorems to numbering of figures? I have a certain figure and instead of it being called Figure 2.1: Figure for Theorem 2.2, it would be much batter to have it simply ...
2
votes
0answers
53 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
80 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
3answers
81 views
table numbering style
The tables in my document are labeled 1...N; I like this format. I also have a table which belongs to the appendix of my paper that I would labeled A1 or A.1 . Is there a way to change the numbering ...
0
votes
0answers
59 views
Use \tag for tables and figures [closed]
How do you use the answer suggested here:
Override default equation numbering in Beamer?
on table and figure numbering?
1
vote
1answer
66 views
How can I change the counters of tables in the appendices? [duplicate]
I have multiple appendices and in some appendices I have tables. What I want is that each appendix itself has a letter as a number (e.g. Appendix A: title). A second thing that I want to achieve is ...
2
votes
1answer
260 views
About numbering of figures and tables in appendix {elsarticle.cls}
When I am using elsarticle.cls to write papers, I always meet the following problem. If I already have one picture (table) in main text and then I put another picture (table) in appendix, the ...
8
votes
2answers
103 views
Consecutive caption numbers without chngcntr?
As many before me I need consecutive caption numbers for figures and tables instead of chapter-based numbers like Figure 1.2. I use scrreprt and the caption-package for my document. I also need roman ...
0
votes
0answers
38 views
Figure counter and figure label issues [duplicate]
i ve got an issue with Figure counting and, i think, labeling. Though I set the counter for figures at 0, my first figure, that I d like to have counted as 'Fig.1' and that is labeled as ...
2
votes
1answer
122 views
endfloat and \Continuedfloat: incorrect numbering for place holders
When I use endfloat and \ContinuedFloat, the table place holders that endfloat puts in don't have the correct numbering (while the tables themselves do). For example if I have a float and another ...
8
votes
3answers
131 views
Changing the number of figure or equation automatically in text by changing the places of figures and equations
Is it possible to automatically reference a figure and equations in text? I meant sth like bibliography references. Moreover, by changing the place of the figures or equations relevant figure or ...
8
votes
2answers
1k views
Change figure numbering for appendix
I want to reset the figure counting when the appendix starts, and follow a different pattern. Specifically, I want figures in the appendix to start with A.1 onward, instead of continuing on from the ...
9
votes
1answer
131 views
Negative numbers being assigned to figures
I am using pdflatex distribution. I have many figures in the my latex document.
For some reason
the numbering stars from Figure 1 ,then Figure 2. It then goes to Figure 0, -1, -2 and so on.
The ...
2
votes
0answers
158 views
Lyx incorrect figure numbering [closed]
Just a quick question. I am currently working on writing my thesis. I have many figures and I want the numbering to be something like 4.1 or 5.3. Where the first number is my section number and the ...
1
vote
1answer
105 views
Setting parent of a counter and removing counter from caption
I guess, I have two questions.
My very concrete problem is that I want \caption{xyz} to not print a table counter within a table. By now it prints “Table 0.1: xyz“. How would I remove that?
But ...
4
votes
1answer
59 views
Negative or zero chapter number not appearing in list of figures (lof)
Usually figures 1,2,3 of chapter n appears as "n.1, n.2, n.3" in main text and in List of Figures (lof) but this format is not respected if n <= 0, in this case figures appear simply as "1, 2, 3" ...
1
vote
1answer
83 views
table numbers are wrong for double column table
My:
\begin{table*}[t]
\begin{minipage}{\textwidth}
\begin{tabular}
\end{tabular}
\CaptionType{table}
\caption{...}
\label{tab:res2}
\end{minipage}
\\
...
1
vote
1answer
152 views
LyX: number table by section suddenly default, how to remove
I just installed the newest version of LyX 2.0.4 and notice that the table numbering is by section. How do I remove this so that it is naturally incremented for each table created, like it was before?
...
1
vote
1answer
156 views
How to number tables and figures according to sections and subsections independently?
I am writing a document that does not required much formalisms, but I want to implement the following numbering system:
1 Section
Table 1: Caption
Figure 1: Caption
1.1 Subsection
Table 1.1: Caption
...
2
votes
1answer
161 views
Numbering trees/diagrams in tikzpicture
I want to number my trees/diagrams according to section number and at the center and bottom of them. Like
Diagram 1.1
Here is a simple one that I wrote.
\usepackage{tikz}
\usepackage{amsfonts}
...
2
votes
1answer
135 views
figures numbering to 3 levels rather than 2
For some reason my current 'report' has started numbering figures to 3 levels... so if something is within chapter 1, but section 1.3, the figure gets numbered 1.3.1...
This isn't what I want... it's ...
2
votes
1answer
161 views
LyX Question on Table Numbering
How can you change table numbers in LyX. I want to get tables numbered within section (Table 1.1, 1.2 etc.). For some reason \numberwithin{table}{section} is not working.
1
vote
0answers
25 views
Sub-labeling in tabular environment [duplicate]
Possible Duplicate:
How to put subcaptions below subtables, and increase gap between subtables with 'subfigure'?
I have two tables in the tabular environment with labels. I'd like ...
4
votes
2answers
254 views
numbering several latex figures
How is it possible to include figure labeling in latex? By labeling I mean that if I import several figures:
\begin{figure}[ht]
\centering
\includegraphics[height = ...
0
votes
1answer
91 views
Table references showing up with section number instead of table number [duplicate]
Possible Duplicate:
Continuous v. per-chapter/section numbering of figures, tables, and other document elements
My table references are showing up with the section number in them. I'd like ...
4
votes
1answer
302 views
Table numbers restart using \ContinuedFloat
Okay, I am really new at LaTeX so I may be screwing up terribly, but here's my problem. I'm writing a paper with several tables, one of which is in three parts, so I'm using \ContinuedFloat from the ...
4
votes
1answer
487 views
Numbers of figure references
I use enumerating of figures within the section
\renewcommand{\thefigure}{\arabic{section}.\arabic{figure}}
however, when I use a reference to subfigure, instead of 1.1 (a) I get 1(a). How should I ...
2
votes
3answers
260 views
Tables are not numbered using Polyglossia in Hebrew
I have a problem using Polyglossia in Hebrew:
While defining main language as Hebrew, my tables are not numbered in the caption(It appraes as just "Table" (טבלה) instead of "Table 1" (or "טבלה 1").
If ...
3
votes
2answers
374 views
Numbering figures
How do I get figure numbers to run in the same sequence as equation numbers, eg (1.2.3) equation .... figure 1.2.4? For the environments I define I use \newtheorem{thm}[equation]{THM}, but I don't ...
3
votes
1answer
214 views
Numbering new environment with chapter/section
If I have a new environment defined (with, say, trivfloat), is it possible to get that section to number with chapter/section? I use \numberwithin for equations, figures, and tables.
For example, my ...
5
votes
2answers
252 views
How do I suppress the counter for figures?
I am including some illustrations in the figure environment so that they float properly and so I can caption them, but I don't want the counter. Is there a way to suppress this?
...
6
votes
1answer
342 views
Incorrect figure numbering when using subfloats in a subfloatrow
I have a document with a lot of subfigures which are different heights and need to be placed side-by-side and centered vertically. It seems like the floatrow package is ideal for this.
After much ...
6
votes
1answer
1k views
Put text to the right of figures
How can I display text to the right of figure, vertically centered? "Caption" is only displaying text below it, as it seems to me.
2
votes
1answer
605 views
Customizing figure counters [duplicate]
Possible Duplicate:
Continuous v. per-chapter/section numbering of figures, tables, and other document elements
I'm using the book class. I want to count my figures as "Figure 1.", "Figure ...
3
votes
1answer
127 views
labbook figure numbering
I am using the labbook document class which is based on scrbook. labbook doesn't number the chapters, but the figure numbering still behaves the way it was in scrbook: it's not running, but each ...
6
votes
1answer
215 views
Aberrant footnote numbering behavior with footnoted captions
I don't have an explanation for the behavior shown by the following two MWEs. Clearly, the footnote number is altered by the length of text in the caption. Please advise me as to why this strange ...
7
votes
2answers
1k views
How to change table numbering scheme at a new section?
I am trying to implement a style to name tables and figures depending on the section for a thesis and can't figure out how to do it with LaTeX. In the end it should look like this:
and my document:
...
10
votes
2answers
3k views
How to change the numbering for different figures?
Let's say I have two standard figures and two supplementary figures. If I change the name of figure using \renewcommand{\figurename} the figure counter will still count all figures continuously (i.e. ...
5
votes
1answer
312 views
Keep example number together with floating table
I am using the package linguex (for 'linguistic examples') to number the examples in my text, using its command \ex.
I am creating a table that I am numbering with this command \ex.:
\ex. ...
4
votes
1answer
346 views
Running figure numbering
I want to use running figure numbering so I used a trick form this website http://www.tex.ac.uk/cgi-bin/texfaq2html?label=running-nos.
\documentclass[a4paper, 11pt]{scrbook}
\usepackage{chngcntr}
...
5
votes
3answers
195 views
How to number equations and floating materials by page number
I am somewhat intrigued by question Something like \enumerate, but with custom numbers at each \item, which mentions a book where each question is numbered by its page number and the question number.
...
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 ...
4
votes
3answers
1k views
How to create an unnumbered algorithm with a caption?
I want to do something like:
\begin{algorithm*}
\caption{My unnumbered algorithm}
% etc. etc.
\end{algorithm*}
or
\begin{algorithm}
\nonumbercaption{My unnumbered algorithm}
% etc. etc.
...
6
votes
2answers
3k views
How to suppress caption numbering in a table?
How can the auto-numbering on table captions be suppressed? For example, I have a table:
\section{Data}
\begin{table}[h]
\setlength{\arrayrulewidth}{1.5px}
\centering
\begin{tabular}{lcccc} ...
41
votes
1answer
7k views
Continuous v. per-chapter/section numbering of figures, tables, and other document elements
Some document elements (e.g., figures in the book class) are numbered per chapter (figure 1.1, 1.2, 2.1, ...). How can I achieve continuous numbering (figure 1, 2, 3, ...)?
And vice versa: Some ...