我想知道是否有 \usepackage{pdfpages} 包的替代解决方案。
我有三篇论文是用 \documentclass{article} 编写的。当我单独编译每篇论文时,没有任何问题。现在,我想将它们全部放在一起,以 \documentclass{report} 的形式编写我的论文。如果其他文档类有更好的解决方案,我愿意接受。
我的问题是,当我将论文中的所有内容放在一起时,论文(文章)中的表格不再适合该页面。我喜欢 {report},因为它管理目录的方式。目前,所有论文都有自己的序言,但似乎在论文中调用它们时并不重要,因为表格不再适合。
即使我在论文中有相同的包主文本就像每篇文章一样。表格仍然不适合。
我的论文如下:
\documentclass{report}
\usepackage{subfiles}
...other packages for referencing, mathformatting, etc (all same packages in articles are use here to avoid missing any)
\begin{document}
\subfile{Cover_Files/Cover_Pages.tex}
% % ******* Adding TOC and List of Figures *******
\thispagestyle{empty}
\hypersetup{linkcolor = black}
\renewcommand*\contentsname{Table of Contents}
\tableofcontents
\newpage
\listoftables
\newpage
\listoffigures
\newpage
\pagenumbering{arabic}
\chapter{title}
\subfile{Cover_Files/Introduction.tex}
\newpage
\chapter{Paper 01 Name}
\subfile{p_01/p_01.tex}
\end{document}
这是文章中使用的表格,编译后可以毫无问题地适合页面。在报告中编译后就不再适合了。
\begin{table}[htbp]
\scriptsize
\centering
\begin{threeparttable}
\caption{\label{LABEL}CAPTION}
\begin{tabular}{l*{3}{l}}
\toprule
& \multicolumn{3}{c}{\textbf{TEXT}} \\
Model: & (1) & (2) & (3) \\
& 2010-2021 & 2010-2015 & 2016-2021 \\
\midrule
\multicolumn{4}{l}{\textit{A. TEXT}}\\
\addlinespace
\emph{Variables}\\
A & 1111111$ & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
M & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
H & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
S & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
U & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
\addlinespace
\midrule
\emph{Fit statistics}\\
Observations & 1 & 1 & 1 \\
R$^2$ & $0.080$ & $0.138$ & $0.063$ \\
\addlinespace
\midrule
\multicolumn{4}{l}{\textit{B. TEXT}}\\
Model: & (1) & (2) & (3) \\
& 2010-2021 & 2010-2015 & 2016-2021 \\
\hline
\emph{Variables}\\
A & 1111111$ & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
M & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
H & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
S & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
U & 1111111 & 1111111 & 1111111 \\
& 1111111 & 1111111 & 1111111 \\
\addlinespace
\midrule
\emph{Fit statistics}\\
Observations & 1 & 1 & 1 \\
R$^2$ & $0.041$ & $0.129$ & $0.036$ \\
\bottomrule
\end{tabular}
\scriptsize \par \justify
\textbf{Note: }A lot of text, enough text that does not fit
\end{threeparttable}
\end{table}
编辑:将表添加为 MWE。