目前我有一个包含附录的 main.tex 文件。由于我需要在 main.tex 中引用附录中的所有表格,因此仅从 main.tex 中删除附录会使我的 main.tex 中出现问号。正如问题中所述,编辑器要求我提供引用所有表格(包括附录的表格/图表)的 main.tex。这个 main.tex 应该生成一个带有参考资料的 main.pdf,同时我需要提交带有参考资料但没有 appendices.tex 的 appendices.pdf。我甚至不知道如何开始这个请求。这是我的 main.tex 文件的基本结构:
\documentclass[12pt]{article}
\usepackage[
backend=biber,
maxcitenames=2,
maxbibnames=99,
giveninits=true,
style= authoryear,
language=english,
uniquename=false,
uniquelist=false,
url=false,
isbn=false,
doi=false,
eprint=false
]{biblatex}
\addbibresource{chapter1.bib}
\begin{document}
\section{introduction}
Section \ref{append:definition of s.h.c.} gives a thorough discussion of.............
\section{variable description}
\printbibliography
\clearpage
\begin{appendices}
\begin{subappendices}
\setcounter{page}{1}
\setcounter{section}{0}
\setcounter{subsection}{0}
\setcounter{table}{0}
\setcounter{figure}{0}
\renewcommand{\thesection}{A.\arabic{section}}
\renewcommand{\thesubsection}{A.2.\arabic{subsection}}
\renewcommand{\thetable}{A.3.\arabic{table}}
\renewcommand{\thefigure}{A.4.\arabic{figure}}
\section{Data Specifics}
\label{append:dataspecifics}
\end{subappendices}
\end{appendices}
\end{document}
非常感谢任何人的帮助,谢谢。由于我不太擅长使用 Latex,因此希望尽可能详细地说明。