我一直在写这份报告,其中我需要在报告正文中显示几个回归表,然后添加一个包含参考书目的参考部分,最后添加一个包含几个图表的附录部分。以下是我所做的:
\section*{Results}
[...]
\input{Tables/Table2}
[...]
\pagebreak
\bibliographystyle{plain}
\bibliography{Microeconometrics.bib}
\pagebreak
\section*{Appendix}
\begin{figure}
\centering
\includegraphics{Images/CognitionDistrib.jpg}
\caption{Cognition Scores}
\end{figure}
\begin{figure}
\centering
\includegraphics{Images/MentalDistrib.jpg}
\caption{Distribution of mental health score}
\end{figure}
\end{document}
这会导致各种问题。首先,我的表格 2 不在它应该在的位置:它出现在正文之后,就在参考部分之前。表格 2 和参考文献之间没有分页符。然后我使用的第一个图出现在附录部分之前。
我怀疑这是由于表格和图像的大小造成的,但我不确定,也不知道如何解决这个问题。
谢谢您的帮助 !
谢谢 !
答案1
因此,我已经使用 [h!] 解决了图形错位的问题,但是表 2 错位的问题仍然存在,这是我的代码:
[...]
\input{Tables/Table2}
[...]
\newpage
\bibliographystyle{plain}
\bibliography{Microeconometrics.bib}
\newpage
\section*{Appendix}
\begin{figure}[h!]
\centering
\includegraphics{Images/CognitionDistrib.jpg}
\caption{Distribution of cognition score}
\end{figure}
\begin{figure}[h!]
\centering
\includegraphics{Images/MentalDistrib.jpg}
\caption{Distribution of mental health index}
\end{figure}
\end{document}
当我这样做时,表格会出现在 \newpage 和参考书目之间。我尝试了 \newpage 和 \pagebreak,但似乎没有什么区别。不过我可能错了。
任何帮助都值得感激!