LaTeX で図を挿入した後、ページの残りの部分を空白のままにするにはどうすればよいでしょうか?

LaTeX で図を挿入した後、ページの残りの部分を空白のままにするにはどうすればよいでしょうか?

次のコードを使用して、キャプション付きの図全体をページに挿入したいと思います。

\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 の後に、別の目的の他の図があります。そのため、この図の直後の新しいページから、間に空白ページを挟まずに、前のページの残りを空白のままにして、最初からやり直したいと思います。最初の図の外側に表記を使用しようとしましたが、そうするとページ全体が空白になり、望ましくありません。

2 つのページの間にある空白ページを削除し、代わりに最初の図の直後の最初のページの残りを空白のままにして、次のページからやり直す方法はありますか?

答え1

解決に至るには、次のことに従う必要があります。

(1)egregの提案に従い、古くなったパッケージaeを削除するaecompl

(2)ピーター・フリンの提案に従ってmnras.clsオプションを無効にした可能性を検証する[p]

(3)デビッド・カーライルのコメントに従い、(1)で述べた古いパッケージを不適切に使用してパッケージ\clearpageを上書きせずに再度試すと、newtxtext\afterpage

\bst(4)そして、私は、ファイルの最後にコマンドを置く必要はないと認識しました.tex。完全に空のページが強制的に作成されるため、望ましくないからです。

ようやく問題を解決することができました。皆様のご協力に感謝いたします。

関連情報