如何使用 LaTeX 文章类获取标题页?

如何使用 LaTeX 文章类获取标题页?

可能重复:
我怎样才能让 \maketitle 使用文章类创建单独的标题页?

我正在尝试将标题页和摘要垂直居中放置在 LaTeX 文档中(与课程非常相似report)。我article现在正在使用课程。本质上我想要的是report没有章节的课程,只有节和小节等。

答案1

使用titlepage类选项。

\documentclass[titlepage]{article}

\usepackage{lipsum}

\begin{document}

\title{(title)}
\author{(author)}
\maketitle

\begin{abstract}
\lipsum[1]
\end{abstract}

\lipsum[1]

\end{document}

答案2

默认情况下,节级编号定义为report.cls作为

\renewcommand \thesection {\thechapter.\@arabic\c@section}

这会将节号添加到前面\thechapter.。其他较低级别的节号命令遵循类似的层次结构。因此,您可以只使用文档类,并使用以下方法从(所有)较低级别的节号命令(如和)中report删除编号\chapter\section\subsection

\renewcommand{\thesection}{\arabic{section}}

其他与章节相关的内容可能也需要重新定义,尽管这在技术上并非必要。例如,\theequation\thefigure所有\thetable条件都以计数器的值chapter为准,\thechapter.只有当\c@chapter>\z@(chapter计数器大于零,且仅0在 的第一个符号处从 开始递增\chapter) 时,才在计数器前面加上 。无论 和 是否完整:

\renewcommand{\theequation}{\arabic{equation}}
\renewcommand{\thefigure}{\arabic{figure}}
\renewcommand{\thetable}{\arabic{table}}

这是一个最小的例子(没有任何特殊之处),仅显示了分段结构:

在此处输入图片描述

\documentclass{report}
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\author{A.\ Nonymous} \title{My title} \date{\today}
\renewcommand{\thesection}{\arabic{section}}%
\begin{document}
\maketitle
\tableofcontents
\section{First section} \lipsum[1]
\subsection{First subection} \lipsum[2]
\subsection{Second subsection} \lipsum[3]
\subsubsection{First subsubsection} \lipsum[4]
\section{Second section} \lipsum[5]
\end{document}

相关内容