Skip to main content
TopMiniSite

Back to all posts

How to Avoid Index (Numbering) In Latex?

Published on
6 min read
How to Avoid Index (Numbering) In Latex? image

Best Tools to Buy for LaTeX Mastery in November 2025

1 The LaTeX Companion (Tools and Techniques for Computer Typesetting)

The LaTeX Companion (Tools and Techniques for Computer Typesetting)

BUY & SAVE
$74.25
The LaTeX Companion (Tools and Techniques for Computer Typesetting)
2 GELLEN Liquid Latex for Nails, 15ml Nail Peel off Cuticle Guard for Nail Polish with Plastic Nail Stick Nail Art Liquid Latex Tape Cuticle Protectors Gifts for Women

GELLEN Liquid Latex for Nails, 15ml Nail Peel off Cuticle Guard for Nail Polish with Plastic Nail Stick Nail Art Liquid Latex Tape Cuticle Protectors Gifts for Women

  • PROTECTS SKIN AROUND NAILS, ENSURING MESS-FREE NAIL ART CREATION!
  • QUICK-DRYING FORMULA: READY TO USE IN JUST 45-90 SECONDS!
  • SAFE AND EASY APPLICATION FOR STUNNING NAIL ART WITHOUT DAMAGE.
BUY & SAVE
$6.99
GELLEN Liquid Latex for Nails, 15ml Nail Peel off Cuticle Guard for Nail Polish with Plastic Nail Stick Nail Art Liquid Latex Tape Cuticle Protectors Gifts for Women
3 The LaTeX Companion: Parts I & II (Tools and Techniques for Computer Typesetting)

The LaTeX Companion: Parts I & II (Tools and Techniques for Computer Typesetting)

BUY & SAVE
$159.99
The LaTeX Companion: Parts I & II (Tools and Techniques for Computer Typesetting)
4 PUEEN Latex Tape Peel Off Cuticle Guard Skin Barrier Protector Nail Art Liquid Tape 15ml Pink - BH000584

PUEEN Latex Tape Peel Off Cuticle Guard Skin Barrier Protector Nail Art Liquid Tape 15ml Pink - BH000584

  • STORE ABOVE FREEZING: ENSURES PERFECT CONSISTENCY FOR BEST RESULTS.
  • EASY CLEANUP: SIMPLIFIES MESSY NAIL ART WITH EFFORTLESS PEEL-OFF!
  • VISIBLE DRYING: TURNS CLEAR PINK WHEN READY – NO GUESSWORK NEEDED!
BUY & SAVE
$6.79
PUEEN Latex Tape Peel Off Cuticle Guard Skin Barrier Protector Nail Art Liquid Tape 15ml Pink - BH000584
5 Gellen Liquid Latex for Nails, Peel Off Cuticle Guard for Nail Polish Skin Barrier Protector Nail Art Liquid Latex Tape for Manicure Home Salon 15ml Cuticle Protectors Gifts for Women, White

Gellen Liquid Latex for Nails, Peel Off Cuticle Guard for Nail Polish Skin Barrier Protector Nail Art Liquid Latex Tape for Manicure Home Salon 15ml Cuticle Protectors Gifts for Women, White

  • PROTECT YOUR SKIN: PREVENT NAIL POLISH MESS WITH OUR SAFE LATEX BARRIER.

  • EASY APPLICATION: QUICK-DRY FORMULA SIMPLIFIES YOUR NAIL ART PROCESS.

  • CUSTOMER SUPPORT: ALWAYS HERE TO ASSIST WITH ANY PRODUCT CONCERNS!

BUY & SAVE
$6.99
Gellen Liquid Latex for Nails, Peel Off Cuticle Guard for Nail Polish Skin Barrier Protector Nail Art Liquid Latex Tape for Manicure Home Salon 15ml Cuticle Protectors Gifts for Women, White
6 Liquid Latex 4 oz PRO GRADE Brushable Thick Latex for Makeup Special FX Prosthetics Halloween Masks and more!

Liquid Latex 4 oz PRO GRADE Brushable Thick Latex for Makeup Special FX Prosthetics Halloween Masks and more!

  • BRUSHABLE FORMULA REQUIRES JUST A FEW LAYERS FOR FAST RESULTS.
  • VERSATILE: THIN WITH WATER FOR EASY APPLICATION AND ADJUSTABILITY.
  • THICK, EFFICIENT FORMULA SAVES TIME-LESS PRODUCT FOR MORE IMPACT!
BUY & SAVE
$10.95
Liquid Latex 4 oz PRO GRADE Brushable Thick Latex for Makeup Special FX Prosthetics Halloween Masks and more!
7 LaTeX Beginner's Guide: Create visually appealing texts, articles, and books for business and science using LaTeX

LaTeX Beginner's Guide: Create visually appealing texts, articles, and books for business and science using LaTeX

BUY & SAVE
$39.99
LaTeX Beginner's Guide: Create visually appealing texts, articles, and books for business and science using LaTeX
8 JODSONE Gel Nail Polish Remover Kit - Set with 15ml Gel Nail Polish Remover, Cuticle Oil and Latex Tape, and Complete Remover Manicure Tool Set, No Soaking

JODSONE Gel Nail Polish Remover Kit - Set with 15ml Gel Nail Polish Remover, Cuticle Oil and Latex Tape, and Complete Remover Manicure Tool Set, No Soaking

  • REMOVE GEL POLISH QUICKLY AT HOME-NO SALON VISITS NEEDED!

  • MOISTURIZE AND STRENGTHEN NAILS WITH INCLUDED CUTICLE OIL.

  • SIMPLE STEP-BY-STEP GUIDE FOR SAFE AND EFFECTIVE USE.

BUY & SAVE
$9.99 $12.99
Save 23%
JODSONE Gel Nail Polish Remover Kit - Set with 15ml Gel Nail Polish Remover, Cuticle Oil and Latex Tape, and Complete Remover Manicure Tool Set, No Soaking
+
ONE MORE?

In LaTeX, if you want to avoid numbering in a list or when numbering sections, chapters, equations, etc., there are a few approaches you can take. For sections, chapters, and similar structures, you can use the asterisk (*) version of the command. For example, \section*{Section Title} will create a section without a number. This suppresses the numbering and prevents it from appearing in the table of contents as well. For lists like enumerations, you could use the enumerate environment and customize it by redefining the numbering style to be empty. Alternatively, you can use the itemize environment, which inherently doesn't number its items. For equations, using \[ ... \] or equation* (with the amsmath package) will create an unnumbered equation. Additionally, when you need a specific numbered structure but don't want a specific instance to be numbered, you can hide the number temporarily by using formatting commands or redefining counters locally within the document.

What is an unnumbered environment in LaTeX?

In LaTeX, an unnumbered environment refers to a type of environment where the default behavior of numbering is suppressed. Many environments in LaTeX, such as chapters, sections, equations, and figures, typically include automatic numbering. However, in some cases, you might want these to appear without any number.

For example, when working with sections and chapters, you can use:

  • \section*{Title} instead of \section{Title} to create an unnumbered section.
  • \chapter*{Title} instead of \chapter{Title} to create an unnumbered chapter.

For environments that are typically numbered like equation, table, or figure, you can achieve an unnumbered version using specific packages or commands to suppress numbering:

  • In the equation environment, use \begin{equation*} ... \end{equation*} to prevent numbering. This requires the amsmath package.
  • For figures and tables, setting the \caption*{} command inside figure or table environments, often in conjunction with packages like caption or float, can help remove the default numbering.

Using unnumbered environments is particularly useful for standalone elements that don't need sequential numbering or when you want to insert supplementary text or graphics that don't fit into the main enumeration.

How to use custom label numbers in LaTeX?

In LaTeX, you can use custom labels for various elements like equations, figures, tables, sections, etc., by using a combination of the \label{} command and the \ref{} command. Here's how you can do that with some examples for different contexts:

Equations

To set a custom label for an equation, you will first need to redefine the numbering mechanism. This usually involves using \tag{} inside an equation environment.

\documentclass{article} \usepackage{amsmath}

\begin{document}

\begin{equation} E = mc^2 \tag{Einstein's Formula} \label{eq:einstein} \end{equation}

This is a reference to the equation \ref{eq:einstein}.

\end{document}

Figures and Tables

For figures and tables, you typically allow LaTeX to handle the numbering automatically but refer back to them using a custom label.

\documentclass{article} \usepackage{graphicx}

\begin{document}

\begin{figure}[h] \centering \includegraphics[width=0.5\textwidth]{example-image} \caption{This is a sample image.} \label{fig:sample} \end{figure}

Figure \ref{fig:sample} shows an example image.

\end{document}

Sections

You can use custom labels to refer back to specific sections:

\documentclass{article}

\begin{document}

\section{Introduction} \label{sec:introduction}

In Section \ref{sec:introduction}, we discuss the basics of this paper.

\end{document}

Customizing the Section Numbering

If you want to customize the section numbering itself, you might need to use the \renewcommand{\thesection}{}. Here's an example:

\documentclass{article}

\renewcommand{\thesection}{A.\arabic{section}}

\begin{document}

\section{Introduction} \label{sec:introduction}

See Section \ref{sec:introduction}.

\end{document}

This will prefix all section numbers with "A.".

Remember, for custom label references, \label{} should always follow \section{}, \begin{figure}, or similar, directly, to ensure correct referencing. Custom tags, like those with \tag{} for equations, require additional packages like amsmath.

Ensure you compile your LaTeX document perhaps more than once, as the references generally take one run to "settle" and be displayed correctly.

What is the effect of using \setcounter in LaTeX?

In LaTeX, the \setcounter command is used to set the value of a counter to a specific number. Counters in LaTeX are used to keep track of things like section numbers, figure numbers, equation numbers, and so on. By using \setcounter, you can manually adjust these numbers.

The syntax for \setcounter is:

\setcounter{counter}{value}

Here, counter is the name of the existing counter that you want to modify, and value is the integer you want to set it to. For example, if you want to set the section number to 3, you can use:

\setcounter{section}{3}

After this command, the next section you create will be titled "Section 4" instead of the default sequential numbering. This can be particularly useful if you need to start numbering from a specific number or if you're splitting a document into multiple parts and want consistent numbering across parts.

Using \setcounter allows for more control over the document’s numbering, making it easier to manage references and maintain a logical structure.

What is the process for resetting section numbers in LaTeX?

In LaTeX, if you need to reset section numbers, especially when starting a new chapter or part of your document where you want section numbers to begin again with 1, you can use the \setcounter command. This is particularly useful in documents like books or reports where each chapter starts with section 1.

Here’s a basic guideline on how to reset section numbers:

  1. Reset within a Chapter or Part: If you want to reset section numbers within a chapter or any higher-level division, you can use the \setcounter command to reset the section counter. For example, to reset the section counter to 0 at the beginning of a new chapter, you could write: \chapter{New Chapter} \setcounter{section}{0} This sets the section counter back to 0, so the next \section command will produce "Section 1".
  2. Automatic Reset in Standard Document Classes: In standard LaTeX document classes like book or report, the section numbers are automatically reset at the start of each new chapter. However, you might want to use the manual reset if you've customized your document structure or you're working within other environments.
  3. Resetting within Other Environments: If you're using a different type of counter and need to reset it similarly, just replace section with the relevant counter name. For instance, to reset subsection numbers: \setcounter{subsection}{0}
  4. Using with \renewcommand for Custom Numbering: If you have customized numbering schemes, you might need additional commands to ensure correctness. For example, you can redefine how section numbers are displayed, but this typically involves \renewcommand rather than \setcounter.
  5. Combining with Other Formatting: Sometimes resetting sections is part of larger format changes, like changing numbering styles between Roman and Arabic. This usually involves more complex combinations of \renewcommand.

By using \setcounter, you can directly control the numbering of sections and similar entities, ensuring your document reflects the structure you intend.