{numbering} is about numbering document elements. Use this tag in addition to other tags specifying what should be numbered (or have its number removed). For {page-numbering} or {line-numbering}, use the respective tag instead.
7
votes
1answer
73 views
Numbering of subsections and paragraphs
I have a document style for a report which I'm having to copy to LaTeX format. I'm using pdfLaTeX, for information. In essence, the system is that paragraphs are on the same level as subsections, ...
1
vote
1answer
45 views
Numbering of an Introduction in the ToC [duplicate]
Does anyone know how I can get the heading Introduction and Conclusion in my project and on my content page without them being numbered. E.g just have Introduction and not 1. Introduction?
9
votes
3answers
192 views
How to set a counter like this?
I want to set a counter like picture
I only can do
\documentclass[a4paper, 12pt]{article}
\usepackage{fouriernc}
\usepackage{amsmath}\usepackage[thmmarks,standard,thref]{ntheorem}
...
5
votes
1answer
57 views
Numbering in algorithmicx
I have simple code:
\documentclass{article}
\usepackage{algorithm}
\usepackage{algpseudocode}
\begin{document}
\begin{algorithm}
\caption{Examples}\label{alg:Examples}
\begin{algorithmic}[1]
...
4
votes
2answers
56 views
Change theorem counter in Springer template
I used Springer template for my book, more concrete I used svmono.
Here is a MWE, that is the shortened version of my template file.
...
0
votes
1answer
49 views
How can different numbering style be used for nested subfigures?
I want to display a figure demonstrating 3 cases. The case1 and case2 are shown using single images each. But case 3 needs 3 images. I have used nested subfigure as follows: However the captions go as ...
2
votes
1answer
29 views
Get rid of numbering in “remark” environment
I use renewcommand for changing the remark into my native language, more precise, I used :
\renewcommand\remarkname{Chú ý}
It goes with a counter, i.e each time I start a remark
\begin{remark}
...
2
votes
0answers
44 views
Cross-refencing a custom counter in \alph style?
I made a 'hypothesis' custom counter in order to let LaTeX handle my hypothesis reference. My code is
\newcounter{hypothese}
\refstepcounter{hypothese}\label{hypo:lenght_of_words}
...
0
votes
0answers
25 views
Lyx and Hebrew - Subsection numbering in the wrong direction [duplicate]
I'm using LaTeX to typeset Hebrew math papers, and just started using LyX for that purpose. I use the KOMA script article class and XeTeX, and everything works great except for one glitch:
The ...
1
vote
1answer
66 views
Completely disable automatic incrementing of section and subsection counters?
I'm using LaTeX as a final build step from a specific legal source (a code of laws) that already has numbering - which is not entirely logical. So, the auto-stepping section & subsection numbering ...
4
votes
1answer
74 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 ...
2
votes
1answer
42 views
Two labeled equations on the same line with labels lining up vertically
I'm using the following LaTeX code within the amsmath environment in LaTeX (MiKTeX 2.9 and TeXnicCenter under Windows):
Let $f$ represent the resulting number of such two-step cycles that operate per ...
0
votes
0answers
73 views
How to number multiline equations? [closed]
I'd like to write a multiline chain of equations and inequalities and to number several of them in such a way that i can refer to these numbered equations in the surrounding text. Can i do so using ...
2
votes
1answer
43 views
Using \value and \arabic to label sections
I'm trying to create a document that follows a numbering system of:
1.
1.a
1.a.1
1.a.2
1.b etc
I've tried to use the commands below to specify which section/subsection should be labelled with ...
7
votes
3answers
114 views
Part numbering with suffixes: I, II, IIIa, IIIb, IV,
I would like to have my parts numbered like this:
I, II, IIIa, IIIb, ... , IV, ...
I have written some code which works fine. But when using hyperref, I get this warning:
destination with the same ...
1
vote
2answers
73 views
Equation number position in a new line
How do I put the number of each equation in the new line (not the same line with the equation, located in the next line on the right)
This is required for all the equations in my thesis (which I ...
0
votes
0answers
23 views
Heading subsubsection without number [duplicate]
I'm writing my thesis and, if I insert a subsubsection, it appears without number. Therefore, if I refer to it, LaTeX works properly, that is it refers with its true number (i.e. 1.1.1). Why? How can ...
2
votes
1answer
62 views
How can I number my subsequent results after my theorems?
I am trying to number my theorem results after my theorem, i.e Theorem 1 followed by Result 1.1, Result 1.2,... and Theorem 2 followed by Result 2.1, Result 2.2 and so on, where the first number after ...
1
vote
0answers
54 views
Customize section numbering from Springer templates
I really like the style of Springer book (which is available here), so I decided to customize it for my own book.
In that template, the section in chapter is labelled as : 1.1 (1st section in ...
4
votes
1answer
67 views
Subsection numbering with prefix
How to set custom subsection numbering? I want to have prefix "KAT/" before number, it should look like this:
KAT/001 Client - blablabla
KAT/002 Visit - blablabla
KAT/003 User - blablabla
What is ...
6
votes
1answer
77 views
Glossaries with section as counter does not work in appendix [closed]
I would like to use the glossaries package with the option counter=section.
This works well as long as I don't use any glossary entries in the appendix.
It seems the section counter is reset by the ...
0
votes
1answer
38 views
Defining clauses as in the C standard document?
I am trying to write a document with the same presentation as the C standard document.
Here is the document: C draft n1570
Look at page 256 and the 7.12.4.1 section for example. My question is how to ...
3
votes
1answer
51 views
Change theorem numbering from Roman to Arabic
I am trying to number my theorems according to section number. I use the following in the preamble, which works:
\newtheorem{theorem}{Theorem}[section]
However, since my section is numbered as ...
2
votes
1answer
67 views
Getting section numbering to start at 0
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{tocloft}
\begin{document}
\tableofcontents
\thispagestyle{empty}
...
9
votes
2answers
103 views
Using memoir, how do I number paragraphs?
I am trying to implement paragraph numbering with memoir. I would like the numbers to be
in the outside margin,
flush against the text block, and
vertically aligned with the first line of the ...
3
votes
1answer
47 views
Last chapter number
Is there a way similar to what is achieved by the lastpage package to get the Last Chapter number? I would then like to use this information to design chapter headings.
0
votes
0answers
69 views
“destination with the same identifier” warning with the amsbook + numberwithin [closed]
Here is a simplified version of what I have:
\documentclass[oneside]{amsbook}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{hyperref}
\usepackage{lipsum}
%theorems
...
0
votes
3answers
78 views
Remove section numbering but retain the short-title optional argument
I have a section like that:
\section[ABC]{ABC\footnote{FN1}\footnote{FN2}}
I want to remove section numbering, but I must use \section[]{}.
So when I try
\section*[A]{B}
I get only
[
Here ...
5
votes
2answers
66 views
How to create multicolumns list environment with the package 'enumerate'?
Let us consider The following example
\documentclass{article}
\usepackage{enumerate}
\begin{document}
\begin{enumerate}
\item Which of the following numbers is the largest ?\\
...
2
votes
1answer
37 views
Remove Numbering (and “()”) on SubFloats (in a table)
So I have set of three tabular environments in a table:
\begin{table}[h]
\centering
\scriptsize
\subfloat[``student" data table]{
\begin{tabular}{lcc} \toprule
Column Name & Data Type ...
4
votes
2answers
136 views
How to add line numbers to a program listing/code?
How do I copy code in to latex to get a result which looks like this:
...Without the red bars of course. I don't know how to get the numbering on the left side when I compile LaTeX. Using \verbatim ...
1
vote
1answer
44 views
Using \footnotemark with letters
There are many answers to questions about \footnotemark, but I couldn't find one to mine. I have the following code and it works fine. What I need to use is \footnotemark [a] instead of \footnotemark ...
2
votes
1answer
56 views
Chapter Numbering
Using code from Remove "chapter #" from the chapter title but keep chapter number in the table of contents
This removes the Chapter # from the header, however can I have the chapter number ...
1
vote
0answers
141 views
Chronology - year in first item
In the following chronology example, how should it be written, when I need number of year in first comma? In my case I need 1980 to show.
EDIT BY LOCKSTEP (copied from edit of now-deleted post by ...
5
votes
1answer
43 views
How can I add a section reference to equation labels in an unnumbered section?
I have an unnumered section in a document, defining notation for the further contents. Since it's unnumbered, the equations within are labelled: '(1)', etc.
For example:
\documentclass[12pt]{book}
...
1
vote
1answer
51 views
Numbering theorems as subsubsections
I am working on a large, multi-chapter document using the memoir class. I have sections, subsections, and subsubsections within each chapter, and within the subsubsections are theorems, lemmas, ...
3
votes
3answers
80 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 ...
2
votes
3answers
61 views
Problems with sectioning / toc
I've got a problem with my ToC / sectioning.
First of it all: my code:
\documentclass[a4paper, oneside, 12pt, listof=totoc, bibliography=totoc, titlepage]{scrreprt}
\usepackage[ngerman]{babel}
...
5
votes
1answer
91 views
Beamer \tableofcontents does not display the correct section number after \setcounter{section}{…}
I use beamer to make presentations for my lectures (I despise PowerPoint). Each presentation represents one chapter of the textbook. Therefore, I need the section numbers in the beamer presentation ...
3
votes
1answer
50 views
How to create a numbered list of references when using verbose-trad1 style with the biblatex package?
I am using the biblatex package in the verbose-trad1 style.
When generating a bibliography at the end of my chapter, all references are listed in alphabetical author, but they are NOT numbered.
Is ...
2
votes
0answers
56 views
Subfloatrow: Omitted incrementation in figure numbering when using subfigures
I suspect this question is slighty related to another question found in subfloatrow: incorrect continued numbering. Trying out the MWE below, the incrementation of the figure number of figure two is ...
8
votes
2answers
51 views
Modifying an individual subsection number
I have an article divided into sections and subsections. I need to insert a subsection "5.2a" between "5.2" and "5.3". What is the easiest way to do this?
3
votes
0answers
49 views
includepdf and tableofcontents without numbering
I try to include an entire pdf file with pdfpages but I will not use numbering in the table of contents. Here is a MWE, which illustrates the problem.
\documentclass[a4paper]{scrreprt}
...
4
votes
4answers
127 views
Numbering of Questions in Different Way
\documentclass{article}
\begin{document}
\begin{center}
Exercise-1
\end{center}
\begin{enumerate}
\item 1st question.
\item 2nd question.
\begin{enumerate}
\item sub numbering of 2nd ...
3
votes
1answer
80 views
subfloatrow: incorrect continued numbering
I am using the subfloatrow environment (provided by the floatrow package) to organise the layout of figures for my thesis. For the MWE provided below, the numbering of the sub-figures in the second ...
2
votes
0answers
36 views
Wrong Subsubsection numbering [closed]
I have changed all headings to be indented by the same amount.
\titleformat{\section}
{\bfseries}
{\makebox[1cm][l]{\thesection}}{0cm}{}
\titleformat{\subsection}
{\bfseries}
...
1
vote
1answer
113 views
Get rid of the word “equation” in cross references
I'm using the thesis template that comes with LyX and whenever I make a cross reference for an equation it comes along with the word "Equation XX.YY" and I just want the number "XX.YY".
The document ...
0
votes
0answers
58 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
2answers
85 views
Equation number not on the extreme right?
I am trying to number the equation in my thesis. All of the equation numbers are being displayed correctly on the extreme right (of the text area). However, in one equation, I am facing a little ...
1
vote
1answer
37 views
Format a 'sectioned' counter individually
I have a set of different types to include figure-like items in a document. These include a float (created by \SetupFloatingEnvironment), a non-float and full-page environments/commands.
While the ...



