标题位于顶部规则的中间

标题位于顶部规则的中间

我正在尝试创建一个标题,使其看起来像下面的图片,这样标题就不会在第一行的正上方

在此处输入图片描述

但是,我尝试了 MWE 上的尺寸,似乎无法让它工作。我想知道我是否能对如何做到这一点有所了解。

\documentclass[12pt]{article}

\usepackage{fullpage} %full page typesetting
\usepackage{setspace} %allows for non-singlespacing
\usepackage{graphicx} %graphics capabilities
\usepackage{latexsym} %extra symbols
\usepackage{rotating} %rotation for figures
\usepackage{longtable} %tables that fill more than a single page
\usepackage{hyperref} %hypertext links in the document
\usepackage{natbib} %better bibliographies
\usepackage{authblk} %author and affiliation in opening


%Put name and page number on subsequent pages
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\setlength{\headheight}{14.5pt}
\rhead{\emph{Some Header}}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0pt}


\newcommand\e{\emph}
\newcommand\tb{\textbf}
\newcommand\un{\underline}
\newcommand\txt{\texttt}

\usepackage{blindtext}

\begin{document}
    \blindtext 
\end{document}

相关内容