如何使水平线变粗?

如何使水平线变粗?

我正在按照此处的教程定制部分模块 http://blog.scribtex.com/how-to-write-a-latex-class-file-and-design-yo

我如何制作

  [\titlerule]                 % Inserts a horizontal line after the heading

更厚的?

答案1

使用可选参数来指定规则高度。请注意,如果您在可选参数中使用它,则\titlerule必须将其括在括号中。\titlerule[<height>]\titleformat

\documentclass{article}

\usepackage{titlesec}

\titleformat{\section}
    {\Large\scshape\raggedright}{}{0em}{}[{\titlerule[2pt]}]

\begin{document}

\section{foo}

\end{document}

在此处输入图片描述

答案2

只需使用类似 即可\titlerule[.8pt]。默认值为 .4pt。

相关内容