我想要做的是创建一个文档,它以标题小页、摘要开始,然后开始主要部分。理想情况下,我希望在同一页上执行此操作,有点像杂志文章,而不是装订书(这是乳胶标题页的显示方式)。
像这样:
\documentclass[notitlepage]{report}
\begin{document}
\begin{titlething}
Formatting for title + author etc., perhaps even with
\end{titlething}
\maketitle
\begin{abstract}
abstract-text
\end{abstract}
\section{First bit}
If you want to ramp your text straight onto the title page, start the text at
something that does not cause a page break, like a section. Here's a handy
place to introduce some of your woofy conventions, like quotes in equations.
\chapter{New Page}
A new chapter starts a new page.
\end{document}
我的想法可能是将标题页设置在小页面中?不过,我正在尝试将章节保留在文档中,如果这有帮助的话,因为我有相当多的“报告”样式的收藏。
小型页面不起作用。\nopagebreak[4] 不起作用。
实际上“notitlepage”选项确实有效。实际情况是,当您创建一个章节时,该章节会从新页面开始。我的大多数文档都是这样的。
因此,如果您确实想在第一页开始文本,请考虑使用类似章节的内容来介绍第一章之前的内容。
温迪现在很开心。:)
答案1
似乎使用titling
http://www.ctan.org/pkg/titling 是一种方法
代码
\documentclass[notitlepage]{report}
\usepackage[left=1in, right=1in, top=1in, bottom=1in]{geometry}
\usepackage{titling}
\usepackage{lipsum}
\pretitle{\begin{center}\Huge\bfseries}
\posttitle{\par\end{center}\vskip 0.5em}
\preauthor{\begin{center}\Large\ttfamily}
\postauthor{\end{center}}
\predate{\par\large\centering}
\postdate{\par}
\title{TITLE}
\author{NAME and ID}
\date{\today}
\begin{document}
\maketitle
\thispagestyle{empty}
\begin{abstract}
\lipsum[1]
\end{abstract}
\section*{First bit}
If you want to ramp your text straight onto the title page, start the text at
something that does not cause a page break, like a section. Here's a handy
place to introduce some of your woofy conventions, like quotes in equations.
\chapter{New Page}
A new chapter starts a new page.
\end{document}
答案2
如果你想让它看起来像一篇文章,你应该使用article
。这样就不需要黑客了。该命令\chapter
不存在,但\section
无论如何都会给出像“1 章”这样的标题。如果你想对接下来的章节(部分)有报告的感觉,你可以在\clearpage
第一章后面添加一个。
在您的收藏中,您只需将所有内容替换\subsection
为\subsubsection
,将所有内容替换\section
为\subsection
,最后将所有\chapter
内容\section
替换为 。然后将 documentclass 更改为article
。
看起来像这样:
% arara: pdflatex
\documentclass{article}
\author{author}
\date{\today}
\title{title}
\begin{document}
\maketitle
\begin{abstract}
abstract-text
\end{abstract}
\section{First bit}
If you want to ramp your text straight onto the title page, start the text at
something that does not cause a page break, like a section. Here's a handy
place to introduce some of your woofy conventions, like quotes in equations.
\newpage
\section{New Page}
A new chapter starts a new page.
\end{document}