将表格移至附录但保留相同的文内编号

将表格移至附录但保留相同的文内编号

我正在写硕士论文,有一堆表格我想移到附录中,但我想保留相同的编号。例如,如果在文本中将其称为“表 13”,我希望在附录中也将其编号为表 13。

下面是我的序言和示例表:

在论文中,这是表 37;有什么方法可以将其从文内移至附录并保留为表 37?

谢谢!

\usepackage[margin=1in]{geometry}   
\usepackage{graphicx}
\usepackage{amsthm, amsmath, amssymb}
\usepackage{setspace}
\usepackage[loose,nice]{units}
\usepackage{gb4e}
\usepackage{tipa}
\usepackage{enumitem}
\usepackage{linguex}
\usepackage{indentfirst}
\setlength\parindent{40pt}
\usepackage{setspace}\onehalfspacing 
\usepackage{float}
\setlength{\parskip}{0.2cm}
\usepackage{hanging}
\usepackage{booktabs}
\usepackage{fontspec}
\setmainfont{junicode}
\usepackage{array}
\newcolumntype{C}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{caption}
\usepackage{subcaption}
\captionsetup[sub]{labelformat=simple}
\renewcommand{\thesubfigure}{(\alph{subfigure})} % Style: 1(a), 1(b)
\renewcommand{\contentsname}{Table of Contents}





\begin{table}[H]
    \centering
    \caption{\textit{Model comparisons for vowel duration (ms) in EA speakers for English and Arabic /f,b/ (Analysis of Deviance Table,Type II Wald chisquare tests)}}
    \label{crosslingvowel}
    \begin{tabular}{lrrr}
        \toprule
        & {\chi}^2 & Df & Pr(>{\chi}^2)\\
        \midrule
        voice\_target & 1.7621 & 1 & 0.1844\\
        language & 458.3895& 1 & <2e-16 ***\\
        \bottomrule
    \end{tabular}
\end{table} ``` 

答案1

\appendix命令由文档类提供,不会影响和环境article的编号。因此,您tablefigure可以手动将所有材料移至table附录figure部分。只要保留浮点的顺序,它们的数量也将保持不变。

话虽如此,你可能真的想考虑雇用端浮点包。如果已加载,则所有figuretable环境的材料都会自动移至文档的后面,每页一个浮点数。一个不错的功能是,它还会在文本中插入“表格 37 关于此处”形式的标记,如果endfloat未使用该包,则会出现浮点数;如果您不想要这样的标记,可以使用包选项来抑制它们。

以下是该软件包的用户指南摘要:

在此处输入图片描述

使用该包的完整 MWE(最小工作示例)endfloat——请注意,我必须将两个实例都更改为{\chi}^2$\chi^2$使代码可编译:

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage{fontspec}
\setmainfont{junicode}

\usepackage[margin=1in]{geometry}   
\usepackage{booktabs}
\usepackage{setspace}
\onehalfspacing 
\usepackage{caption,subcaption}
\captionsetup{textfont=it,justification=raggedright}
\usepackage[detect-all]{siunitx}

\usepackage{lipsum} % for filler text
\usepackage[nolists]{endfloat} % 'nolists': don't generate lists of figures and tables
\AtBeginDelayedFloats{\singlespacing}

%% (commented out remainder of preamble as it doesn't affect the MWE)
%\usepackage{graphicx}
%\usepackage{amsthm, amsmath, amssymb}
%%%%\usepackage{setspace}
%\usepackage[loose,nice]{units}
%\usepackage{gb4e}
%\usepackage{tipa}
%\usepackage{enumitem}
%\usepackage{linguex}
%\usepackage{indentfirst}
%\setlength\parindent{40pt}
%%%%%\usepackage{float} % *please* don't load the 'float' package...
%\setlength{\parskip}{0.2cm}
%\usepackage{hanging}
%\usepackage{array}
%\newcolumntype{C}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
%\usepackage{tabularx}
%\usepackage{multirow}
%\captionsetup[sub]{labelformat=simple}
%\renewcommand{\thesubfigure}{(\alph{subfigure})} % Style: 1(a), 1(b)
%\renewcommand{\contentsname}{Table of Contents}

\begin{document}

\lipsum[1] % a paragraph of filler text

\begin{table}%%%%[H]
    \centering
    \caption{Model comparisons for vowel duration 
    \textnormal{(\si{\milli\second})} in EA speakers 
    for English and Arabic /f,b/ (Analysis of Deviance 
    Table, Type~II Wald chi-squared tests)}
    \label{crosslingvowel}
    \begin{tabular}{lrrc}
        \toprule
        & $\chi^2$ & Df & Pr(>$\chi^2$)\\
        \midrule
        voice\_target & 1.7621 & 1 & 0.1844\\
        language & 458.3895& 1 & $<\num[tight-spacing
]{2e-16}$\,***\\
        \bottomrule
    \end{tabular}
\end{table}

\lipsum[2] % another paragraph of filler text

\appendix % optional

\end{document}

相关内容