无法将表格放入特定部分

无法将表格放入特定部分

当我将标签放在表格底部时,它的标题是它当前所在部分之前的部分。这是我的序言:

\documentclass[openany, oneside]{book}
\usepackage{grad_proseminar}
\usepackage{hyperref}
\usepackage{fixltx2e}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{float}
\usepackage{makecell}
\usepackage{xcolor}
\usepackage{threeparttable}
\usepackage{adjustbox}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage[super]{nth}
\usepackage{url} 
\usepackage{indentfirst}
\usepackage[page,titletoc,title]{appendix}

这是我的代码:

\chapter{Analysis \& Results}
\section{Software}
\section{Descriptive Statistics}
here is my table
\begin{table}[!htbp]
  \scriptsize
   \begin{adjustbox}{width=\textwidth}
   \begin{tabular}{|p{11em}|c|c|}
\hline
     \multicolumn{1}{|l|}{\textbf{Variable}} & \textbf{Frequency} & {\textbf{Percentage}} \\
 \end{tabular}%
     \end{adjustbox}
  \caption{Table 4.2}
   \end{table}%

第一部分为软件,第二部分为说明表,如表4.1:表4.2 本表应标为4.2或4.2.1。

答案1

我不确定我是否理解了期望的结果。所以这只是一个猜测。

当新章节开始时,该类默认book重置计数器table。在标题和参考文献中,表格编号显示为<chapter>.<table>。因此,如果表格是第 4 章中的第一个表格,则其编号为 4.1。

如果在新的部分开始时应重置表计数器,并且表号应包含部分号,则添加

\usepackage{chngcntr}% not needed for uptodate TeX distributions
\counterwithin{table}{section}

例子:

\documentclass[openany, oneside]{book}
%\usepackage{grad_proseminar}% package is unknown
%\usepackage{fixltx2e}% not needed with an uptodate TeX distribution
\usepackage{booktabs}
\usepackage{caption}
\usepackage{float}
\usepackage{makecell}
\usepackage{xcolor}
\usepackage{threeparttable}
\usepackage{adjustbox}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage[super]{nth}
\usepackage{url} 
\usepackage{indentfirst}
\usepackage[page,titletoc,title]{appendix}

%\usepackage{chngcntr}% not needed for uptodate TeX distributions
\counterwithin{table}{section}

\usepackage{hyperref}% load as last package
\begin{document}
\chapter{First chapter}
\chapter{Second chapter}
\chapter{Third chapter}
\chapter{Analysis \& Results}
\section{Software}
\section{Descriptive Statistics}
here is my table
\begin{table}[!htbp]
  \scriptsize
  \begin{adjustbox}{width=\textwidth}
    \begin{tabular}{|p{11em}|c|c|}
    \hline
     \multicolumn{1}{|l|}{\textbf{Variable}} & \textbf{Frequency} & {\textbf{Percentage}} \\
  \end{tabular}%
   \end{adjustbox}
  \caption{Table 4.2}
\end{table}%
\end{document}

结果:

在此处输入图片描述

相关内容