我正在使用回忆录,我只想删除标题后的空白页,有人知道该怎么做吗?
我的代码:
\documentclass[openany,12pt]{memoir}
\chapterstyle{section}
\setlength\afterchapskip {\onelineskip }
\setlength\beforechapskip {\onelineskip }
%ligando a numeração da subsection
\setcounter{secnumdepth}{3}
\maxtocdepth{subsection}
\maxtocdepth{subsubsection}
%alterando nome da tabela e da figura
\renewcommand{\figurename}{Figura: }
\renewcommand{\tablename}{Tabela: }
%Margem
\setlength{\evensidemargin}{0.3cm}
\setlength{\oddsidemargin}{0.3cm}
%fazendo os headers e footers
\makepagestyle{plainstyle}
\makeevenhead{plainstyle}{}{}{}
\makeoddhead{plainstyle}{}{}{}
\makeevenfoot{plainstyle}{}{\thepage}{}
\makeoddfoot{plainstyle}{}{\thepage}{}
\pagestyle{plainstyle}
\aliaspagestyle{chapter}{plainstyle}
%tamanho que o texto ocupa
%\textwidth=16cm
%\setlength{\voffset}{-0.6in}
%\setlength{\textheight}{600pt}
%%%%%%%%%%%%%
\usepackage{lipsum}
%para tabelas grandes
\usepackage{longtable}
%para colocar um width maximo para as figuras do comando
%[max width = ...]
\usepackage[export]{adjustbox}
%packages inseridos que não são do estilo.
\usepackage{placeins}
\usepackage{makeidx}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[table]{xcolor}
\usepackage{float}
\usepackage{morefloats}
%Tirando hifenização(???)
\tolerance=1
\emergencystretch=\maxdimen
\hyphenpenalty=10000
\hbadness=10000
\begin{document}
%incluindo a capa.
\begin{titlingpage}
\input{capa/capa}
\input{agradecimentos/agradecimentos}
\input{resumo/resumo}
\end{titlingpage}
\renewcommand{\contentsname}{Sumário}
\tableofcontents
\newpage
\renewcommand*\listfigurename{Lista de figuras}
\listoffigures
\newpage
\renewcommand*\listtablename{Lista de Tabelas}
%\listoftables
\renewcommand\bibname{Referências bibliográficas}
%inclusão das seções
%%INTRODUÇÂO
\input{introducao/introducao}
%%REVISAO BIBLIOGRAFICA
\input{revisaoteorica/revisaoteorica}
%%METODOLOGIA
\input{metodologia/metodologia}
%%RESULTADOS E DISCUSSÕES
\input{resultadosediscussoes/resultadosediscussoes}
%% CONCLUSÃO
\input{conclusao/conclusao}
%%Referencias bibliograficas
\input{referenciasbibliograficas/referenciasbibliograficas}
\printindex
\end{document}
答案1
在发货时丢弃页面使用
\usepackage{atbegshi}
%...
\AtBeginShipoutNext{\AtBeginShipoutNext{\AtBeginShipoutDiscard}}
\begin{titlingpage}
% <title content>
\end{titlingpage}
我们使用嵌套的将这种丢弃延迟到第二页\AtBeginShipoutNext
。