我怎样才能给出桌号?

我怎样才能给出桌号?

我正在用 overleaf 写博士论文,论文中的第一个表格出现在第二章。生成代码后,Overleaf 将其编号为表 2.1。但我只想将其命名为表 1。有人能帮我解决这个问题吗?谢谢。

答案1

使用该chngnctr包。

% tabcaprob.tex % SE 517296 caption without chapter number

\documentclass{report}
\usepackage{chngcntr}
\counterwithout{table}{chapter} % table numbers independent of chapter numbers
\begin{document}
\chapter{One}
\chapter{Two}
\begin{table}
\centering
A Table
\caption{A table}
\end{table}
\end{document}

有关该chngcntr软件包的功能,请阅读手册 ( > texdoc chngcntr)。如果您能提供一个 MWE 来展示您的问题,而不是我们试图发明一个,那将是最有帮助的。GOM

答案2

这应该能让你领先一步

\documentclass[12pt,a4paper]{article}

\usepackage{caption}

\DeclareCaptionLabelFormat{addS}{#1 S#2}
\captionsetup[table]{labelformat=addS}

\begin{document}

\begin{table}
\centering

\caption{Remove the space in 'Table S 1', so that it becomes 'Table S1'}

\begin{tabular}{lcc}
\hline
    &   p.adjusted  &   Gene Ratio  \\ \hline
TBA &   3.28E-04    &   12/89   \\
\end{tabular}

\end{table}

\end{document}

输出

在此处输入图片描述

感谢@egreg https://tex.stackexchange.com/a/305341/197451

相关内容