我一直在使用\maketitle
一些关于文本位置的自定义功能,并且想添加更多......
我怎样才能隐藏标题页后的空白页?我需要在标题页的背面打印这本书的一些信息,它只是在留下一整页空白后在页面上写入内容。
这是我的 MWE。
\documentclass[14pt,twoside,showtrims,a5paper,extrafontsizes]{memoir} %Classe estilo memoir
\usepackage[brazilian]{babel} %Traduz doc para português do Brasil
\title{MY TITLE}
\author{A GUY'S NAME}
\date{\today}
\renewcommand{\maketitle}{% usado pra criar título personalizado
\centering{
{\Large\theauthor}\par
\vspace*{\fill}
{\Huge\textbf{\thetitle}}\par
\vspace*{\fill}
1ª Edição\\
Florianópolis, 2016\\
Ed. EDITORS INFO
}}
\chapterstyle{thatcher}
\begin{document}
\begin{titlingpage}
\maketitle %título
\end{titlingpage}
This should be in title's verso
\end{document}
答案1
在我看来,没有必要使用环境titlingpage
:只需\maketitle
与之结合使用\thispagestyle{empty}
。
\maketitle
我还稍微清理了一下命令!
\documentclass[14pt,twoside,showtrims,a5paper,extrafontsizes]{memoir}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{blindtext}
\title{MY TITLE}
\author{A GUY'S NAME}
\date{\today}
\renewcommand{\maketitle}{% usado pra criar título personalizado
\begin{center}
{\Large\theauthor}\par
\vspace*{\fill}
{\Huge\textbf{\thetitle}}\par
% \begin{figure}[h]
% \centering
%
\includegraphics[scale=0.2]{ente}
\vspace*{\fill}
1ª Edição\\
Florianópolis, 2016\\
Ed. EDITORS INFO
\end{center}
}
\chapterstyle{thatcher}
\begin{document}
\thispagestyle{empty}
\maketitle %título
\blindtext[10]
\end{document}