如何抑制 1 个表格 Latex 的表格编号

如何抑制 1 个表格 Latex 的表格编号

我想在文档开头添加一个表格,但这个表格不计入。因此,第二个表格以数字 1 开头。所有后续表格都以数字 2、3 等开头。

我怎样才能在乳胶中做到这一点?

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\documentclass[12pt]{report}

\begin{document}

\begin{table}[]
    \centering
    \begin{tabular}{c|c}
         &  \\
         & 
    \end{tabular}
    \caption*{Should have no numbering}
\end{table}

\begin{table}[]
    \centering
    \begin{tabular}{c|c}
         &  \\
         & 
    \end{tabular}
    \caption{Should be table 1}
    \label{tab:my_label}
\end{table}

\end{document}

答案1

为了\caption*制作未编号的标题,标题必须加载包。

在此处输入图片描述

有了这个设置,就根本没必要摆弄计数器了table

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{caption} % <-- this is important

\begin{document}
\begin{table}[h]\caption*{Should have no numbering}\end{table}
\begin{table}[h]\caption{Should be table 1}\label{tab:my_label}\end{table}
\end{document}

相关内容