我想在页面中插入一个带有完整标题的图形,代码如下:
\documentclass[a4paper,fleqn,usenatbib]{mnras}
\usepackage{newtxtext,newtxmath}
% Depending on your LaTeX fonts installation, you might get better results with one of these:
%\usepackage{mathptmx}
%\usepackage{txfonts}
\usepackage[T1]{fontenc}
\usepackage{ae,aecompl}
% Only include extra packages if you really need them. Common packages are:
\usepackage{graphicx} % Including figure files
\usepackage{relsize} %To change the scale/size of the fonts
\usepackage{amsmath} % Advanced maths commands
\usepackage{siunitx}
%\usepackage{amssymb} % Extra maths symbols
% Extra packages
\usepackage{mathrsfs}
\usepackage{lipsum}
\usepackage{blindtext}
\usepackage{afterpage}
%\usepackage{extarrows}
\title[]{Title of the Paper}
\author[First Author]{
First Author's name,$^{1}$\thanks{E-mail: [email protected]}
Second Author's name,$^{2}$\thanks{E-mail: [email protected]}
Third Author's name$^{2,3}$\thanks{E-mail: [email protected]}
\\
$^{2}$The mailing address of the university in which 2nd author resides\\
$^{3}$The mailing address of the university in which 3rd author resides\\
$^{1}$The mailing address of the university in which 2nd author resides}
\date{Accepted XXX. Received YYY; in original form ZZZ}
\pubyear{2017}
\begin{document}
\label{firstpage}
\pagerange{\pageref{firstpage}--\pageref{lastpage}}
\maketitle
\begin{abstract}
\end{abstract}
\begin{keywords}
\end{keywords}
\section{Convergence due to Resolution Effects} \label{Appendix:Appendix C}
\begin{figure*}
\includegraphics[height=9.5cm]{m12m_hist_high}
\caption{the caption for 34th figure}
\label{fig:Figure 34}
\end{figure*}
\begin{figure*}
\includegraphics[height=9.5cm]{m11q_low_high}
\caption{the caption for 42nd figure.}
\label{fig:Figure 42}
\end{figure*}
\begin{figure*}
\includegraphics[height=9.5cm]{m11q_local_high}
\caption{the caption for 43rd figure}
\label{fig:Figure 43}
\end{figure*}
\begin{figure*}
\includegraphics[height=9.5cm]{m11q_hist_high}
\caption{the caption for 53rd figure.}
\label{fig:Figure 53}
\end{figure*}
\bsp % typesetting comment
\label{lastpage}
\end{document}
但是,在图 34 之后,我还有其他具有不同用途的图。因此,我想从这个图之后的新页面开始,中间不留空白页,而是将前一页的其余部分留空。我尝试在第一个图之外使用符号,但这会留下一整页空白,这不是我想要的。
有没有办法删除两者之间的空白页,而是让第一个图形之后的第一页的其余部分保持空白,并从下一页重新开始?
答案1
我必须遵循这些才能得出解决方案:
(1)按照 egreg 的建议,删除过时的软件包ae
和aecompl
(2)根据 Peter Flynn 的建议,验证mnras.cls
禁用该选项的可能性[p]
(3)按照 David Carlisle 的评论,\clearpage
再次尝试,不要newtxtext
通过不恰当地使用(1)中提到的过时软件包来覆盖软件包\afterpage
,
\bst
(4) 我自己意识到,文件末尾没有必要使用该命令,.tex
因为它强制创建一个完全空白的页面,这是我们不希望的。
我终于解决了这个问题。感谢大家的贡献。