标题复制

标题复制

我想复制图片上显示的标题。我的问题在于,我无法将标题精确地置于 3 厘米范围的中间,并且页码和标题本身之间的 5 个单位间距也让我很为难。如果您能提供任何帮助,我将不胜感激。非常感谢!在此处输入图片描述

答案1

这是一种可能性。三条线从字块顶部开始,它们的高度分别为 2.9 厘米(刚好比距离纸张顶部边缘稍短)、1.75 厘米和 1.25 厘米。

标题居中在 0.5 厘米的空间内。你说的“空格键 5x”的意思不清楚;我使用了 1.66667em,相当于当前字体中的五个空格(正常间距为 0.33333em)。

我还将底部边距设置为 3 厘米,与顶部边距相等。

\documentclass{article}
\usepackage{geometry}
\geometry{
  includehead,
  top=0pt,
  left=4cm,
  right=2cm,
  bottom=3cm,
  heightrounded,
  headheight=1.75cm,
  headsep=1.25cm,
}

\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\fancyhead[C]{%
  \begin{minipage}[c][0.5cm]{\textwidth}
  \small
  \hspace*{\fill}%
  A Constant Recontracting Model of Sovereign Debt%
  \hspace*{1.66667em}%
  \thepage
  \end{minipage}%
}

\begin{document}
Some text for showing the first text line
\smash{\rule[\topskip]{0.4pt}{2.9cm}}
\smash{\rule[\topskip]{0.4pt}{1.75cm}}
\smash{\rule[\topskip]{0.4pt}{1.25cm}}
\end{document}

在此处输入图片描述

答案2

我不太清楚所有尺寸的含义。我把 设为4cm左边距,2cm把 设为右边距。我不知道你想要的下边距是多少。

这是一个 MWE,它开始创建类似于您所指定的内容:

\documentclass{article}
%%--------------------
\usepackage{geometry}
\geometry
  {
    %% margins
    top=3cm,
    left=4cm,
    right=2cm,
    %% header
    headsep=1.25cm,
    headheight=0.5cm,
  }
%%--------------------
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.0pt}
%%\renewcommand{\headrulewidth}{0.4pt}
%%\renewcommand{\footrulewidth}{0.4pt}
%% commands to control the contents of 
%% headers and footers
\lhead{}
\chead{}
\rhead{\makebox[0pt][r]{A Constant Recontracting Model of Sovereign Debt}%
       \hspace*{2em}%
       \thepage}
\lfoot{}
\cfoot{}
\rfoot{}
%%--------------------
\usepackage{lipsum}
\begin{document}
\section{Introduction}
\lipsum[1-8]

\end{document}

在此处输入图片描述

相关内容