黑条标题,压缩字体

黑条标题,压缩字体

我经常看到 LaTeX 排版文档有类似这样的标题

在此处输入图片描述

标题被双黑条夹住,并具有独特的细字体。

使用什么来实现这个效果呢?

答案1

查看文档属性,“细”字体被标识为 CMDUNH10,因此您可以这样说

\documentclass{article}
\usepackage[margin=2cm]{geometry}
\usepackage[T1]{fontenc}

\newcommand\lgh{\fontsize{17}{21}\usefont{T1}{cmdh}{m}{n}}
\newcommand\myrule{\par\noindent\rule{\textwidth}{4pt}\par}

\begin{document}

\myrule\medskip
\noindent{\lgh CS61A\hfill Structure and Interpretation of Computer Programs \\[0.5ex]
Spring 2013}\hfill{\scshape Quiz}
\myrule

\end{document}

在此处输入图片描述

相关内容