我正在使用论文模板。我的问题类似于 如何删除附录和下一章后的空白页?
是的,我已经尝试了所有这些解决方案,但没有一个适合我的模板。
主标题“附录”占据一整页,后面跟着空白,然后是空白页。接着是“附录 A”。
\documentclass{memoir}
\begin{document}
\appendix
\appendixpage
This is the appendix.
\end{document}
答案1
尝试将其用于你的样式文档
\documentclass[12pt, a4paper,twoside, openany]{memoir}
默认选项是openright
而不是openany
,这将删除空白页。
编辑 :
我删除了\usepackage{frbib}
你的最后几行并将其替换为
\usepackage{lipsum} % for example
\begin{document}
\section{Section title}
\lipsum
% *************** Fin du style ***************
\frontmatter
%\input{front.tex} % I don't have this file
\mainmatter
\begin{otherlanguage}{english} % Added on 17 April, 2014.
%\input{introduction/introduction.tex}
%\input{pubs/pubs.tex} % Publications
% bibliographie
\bibliographystyle{unsrt}
{\small\bibliography{bibliographie_these}}
% *************** Appendices ***************
\appendix
\appendixpage
\section{Appendix section title}
\lipsum
\end{otherlanguage}
% *************** Back matter ***************
%
\backmatter
%\input{back.tex}
\end{document}
它运行得很好,所以你的问题应该来自于\input{app1/app1.tex}
。
答案2
只需添加oneside
,一切都会好起来:)
\documentclass[oneside]{memoir}
\begin{document}
\appendix
\appendixpage
This is the appendix.
\end{document}
twoside
是默认选项回忆录类(文档 p5):
调用没有选项的类相当于:
\documentclass[letterpaper,10pt,twoside,onecolumn,openright,final]{memoir}
答案3
试试这个(减去任何拼写错误):
\documentclass{memoir}
\begin{document}
\appendix
\nopartblankpage
\appendixpage
This is the appendix
\end{document}
在memoir
命令中\nopartblankpage
,禁止在部分类似页面后出现空白页,并且该命令\partpageblank
设置部分类似页面后出现空白页的正常行为。
答案4
您还可以使用\openany
、\openright
和\openleft
命令:
\documentclass{memoir}
\begin{document}
\openany
\appendix
\openright
\appendixpage
This is the appendix.
\end{document}