对于我的论文提案,我想使用回忆录文档类。我想在标题页上写上摘要和设置:
\abstractnum % Format heading as chapter
\abstractintoc % Include "Abstract" in ToC
并且各部分是否都使用阿拉伯数字而不是罗马数字进行编号?
以下是我所拥有的:
\documentclass[letterpaper, 11pt, twoside, openright, english]{memoir}
\usepackage{lipsum}
% Abstract: Remove indents around abstract text
\setlength{\absleftindent}{0pt}
\setlength{\absrightindent}{0pt}
% Change font size to conform with the rest of the document text
\renewcommand{\abstracttextfont}{\normalsize}
\abstractnum % Format heading as chapter
\abstractintoc % Include "Abstract" in ToC
\title{ my title}
\author{Sal MaName}
\begin{document}
\frontmatter
% \pagestyle{empty}
% \aliaspagestyle{chapter}{empty}
\maketitle
% \mainmatter
\begin{abstract}
\lipsum[1]
\lipsum[2]
\lipsum[3]
\end{abstract}
\pagebreak
\setcounter{tocdepth}{3}
\tableofcontents
\newpage
\section{Overview\label{sec:Overview}}
\lipsum[4]
\end{document}
答案1
这是第一次尝试。不过我不确定我是否遗漏了什么。
对于第一个问题,最简单的方法是抑制标题和摘要之间的分页符。
对于第二个问题,我认为这可以通过\mainmatter
命令来解决,该命令开始编号章节,将页码更改为阿拉伯语等。
\documentclass[letterpaper, 11pt, twoside, openright, english]{memoir}
\usepackage{lipsum}
% Abstract: Remove indents around abstract text
\setlength{\absleftindent}{0pt}
\setlength{\absrightindent}{0pt}
% Change font size to conform with the rest of the document text
\renewcommand{\abstracttextfont}{\normalsize}
\abstractnum % Format heading as chapter
\abstractintoc % Include "Abstract" in ToC
\title{My Title}
\author{Sal MaName}
\begin{document}
\frontmatter
% Adapted from http://tex.stackexchange.com/a/187904/3345
\let\oldcleartorecto\cleartorecto
\let\cleartorecto\relax
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\let\cleartorecto\oldcleartorecto
\setcounter{tocdepth}{3}
\tableofcontents
\mainmatter
\chapter{One}
\section{Overview\label{sec:Overview}}
\lipsum[4]
\end{document}