特定类型的标头

特定类型的标头

我正在准备我的扩展研究摘要,以便提交给大学申请。现在,我的文件中有标题、作者等。我想要做的是在第一页的最顶部(标题上方)插入一个简短的注释(最好是灰度或其他可以与摘要区分开来的字体),描述研究并指出摘要将发送到的部门等。

我该如何做呢?

答案1

因此,您可以做这样的事情,尽管我不确定这是否是您想要的:

\documentclass{article}
\usepackage{titling}
\usepackage{xcolor}% specify driver e.g. [pdftex] if custom configuration requires it; omit otherwise for maximum portability
\newcommand{\myprelude}{}
\newcommand{\prelude}[1]{%
  \renewcommand{\myprelude}{#1}}
\makeatletter
\pretitle{%
  \if\myprelude\@empty\relax
  \else
    \centering\textcolor{black!75}{\myprelude}
  \fi%
  \begin{center}\LARGE}
\makeatother

\author{Some B. Ody}
\title{Really great stuff}
\prelude{Some stuff before.}

\begin{document}
\maketitle

\begin{abstract}
    Here is my abstract.
\end{abstract}

Here is my article.

\end{document}

在此处输入图片描述

我不确定你所说的灰度是不是这个意思。灰度只是黑白灰等,而不是单纯的黑白,或者成熟的颜色模型。所以这本身就意味着你不想让它是彩色的。也许这是因为你把其他所有东西都变成了蓝色,但我猜你真正的意思是你不想让它的颜色太浓,即灰色而不是黑色。调整 75 以适应。(增加它使文本变暗;减少它使它变亮。100 为黑色;0 为白色。)

编辑:可以省略 xcolor 选项 - 感谢 egreg 指出这一点。

答案2

另一个选择可能是这个,没有titling

\documentclass[a4paper,11pt]{article}

notitlepage标题和摘要放在同一页上。文章类默认为 notitlepage。如果您想要单独的标题页,则可以将选项传递为titlepage

\usepackage{xcolor}% here we can use gray color
\title{What ever title you have}
\author{ABC}
%\date{} uncomment if you want date to be 'Removed'
\begin{document}
\centering{\textcolor{gray}{What ever you want to write here}}
{\let\newpage\relax\maketitle}%\since maketitle inserts a \newpage
\maketitle
\begin{abstract}
Here goes your abstract
\end{abstract}
\end{document}

在此处输入图片描述

相关内容