LaTeX 一直将我的表格命名为 Tab. 0.1,而不是 Table 1

LaTeX 一直将我的表格命名为 Tab. 0.1,而不是 Table 1

我正在尝试在论文中绘制一个表格。虽然我做到了,但我很难列举它。我想将其称为表 1,但 \LaTeX 一直将其称为 Tab. 0.1。这是我正在使用的代码片段:

这些是我在序言中使用的软件包:

\documentclass[12pt, letterpaper, oneside]{thesis}

\usepackage{lineno}         
\usepackage{hyperref}       
\usepackage[utf8]{inputenc} 
\usepackage{graphicx}
\usepackage{amsmath}         
\usepackage{multirow}       
\usepackage{multicol}       
\usepackage{epstopdf}       
\usepackage{fancyhdr}
\usepackage{lipsum}
\usepackage{titletoc}
\usepackage{setspace}
\usepackage{array}
\usepackage{mathtools}
\usepackage{gensymb}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{lscape}
\usepackage{xfrac}
\usepackage[square, numbers, comma, sort&compress]{natbib}
\usepackage{verbatim}
\usepackage{chngcntr}
\usepackage{titlesec}
\numberwithin{equation}{chapter}
\counterwithout{figure}{chapter}

\begin{table}[h]
\centering
\begin{tabular*}{0.9\textwidth}{@{\extracolsep{\fill} } | c | c | c | c | c | }
\hline
Time - Angle & $45^{\circ}$ & $90 ^{\circ}$ & $180^{\circ} $ &  $360^{\circ}$ \\
\hline 
0.5 s & 44.22  & 192.71 & 1002.9  & 4118.2\\
\hline
1 s & 12.68 & 41.33  &  157.81 & 650.87 \\
\hline
2 s & 7.14 & 23.47 & 72.51 & 182.65\\
\hline
4 s & 4.41 &  14.43 & 32.05 & 109.12 \\
\hline
\end{tabular*}
\caption{My caption}
\label{Table:1}
\end{table} 

答案1

显然,该课程希望您将其用作\chapter主要细分。

不过,您可以通过添加以下方法解决此问题:

\counterwithout{table}{chapter}

就像你对数字所做的一样。还添加

\renewcommand{\tablename}{Table}

以便使用“Table 1”而不是“Tab. 1”。

答案2

这对我有用:

\renewcommand{\figureshortname}{Figure}

如果您还必须使用数字,请使用:

\renewcommand{\tableshortname}{Table}

答案3

\documentclass[12pt, letterpaper, oneside]{article}

\begin{document}

\begin{table}[h]
\centering
\begin{tabular*}{0.9\textwidth}{@{\extracolsep{\fill} } | c | c | c | c | c | }
\hline
Time - Angle & $45^{\circ}$ & $90 ^{\circ}$ & $180^{\circ} $ &  $360^{\circ}$ \\
\hline 
0.5 s & 44.22  & 192.71 & 1002.9  & 4118.2\\
\hline
1 s & 12.68 & 41.33  &  157.81 & 650.87 \\
\hline
2 s & 7.14 & 23.47 & 72.51 & 182.65\\
\hline
4 s & 4.41 &  14.43 & 32.05 & 109.12 \\
\hline
\end{tabular*}
\caption{My caption}
\label{Table:1}
\end{table} 
\end{document}

% 您不需要任何软件包。这很好用

相关内容