다음 코드를 사용하여 페이지에 캡션이 포함된 그림 전체를 삽입하고 싶습니다.
\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의 의견에 따라 (1)에서 언급한 오래된 패키지를 부적절하게 사용하여 패키지를 \clearpage
덮어쓰지 않고 다시 시도하고 ,newtxtext
\afterpage
(4) 그리고 원하지 않는 완전히 빈 페이지를 강제로 생성하기 때문에 파일 \bst
끝에 명령이 필요하지 않다는 것을 스스로 깨달았습니다 ..tex
마침내 문제를 해결할 수 있었습니다. 모든 사람의 기여에 감사드립니다.