编辑

编辑

我如何创建一个部分标题,后面跟着一条延伸到右边距的水平线,如下图所示:

在此处输入图片描述

答案1

编辑

如果不需要章节编号,您可以直接使用\section*{First Section}或更改示例,如下所示(如果您需要目录,这可能会很麻烦):

\documentclass[a4paper]{article}
\usepackage{xcolor, blindtext}
\usepackage[explicit]{titlesec}

\newcommand{\sectionrule}[2][0ex]{\leaders\hbox{{\color{cyan}\rule[#1]{1pt}{#2}}}\hfill}
\titleformat{\section}{\Large\bfseries}{}{0pt}{#1\,\sectionrule[0.5ex]{1.5pt}}

\begin{document}

  \section{First Section}
  \blindtext
  
  \section{Second Section}
  \blindtext

\end{document}

我找到了一个五岁的伯纳德的回答我只是稍微做了一些修改:

\documentclass[a4paper]{article}
\usepackage{xcolor, blindtext}
\usepackage[explicit]{titlesec}

\newcommand{\sectionrule}[2][0ex]{\leaders\hbox{{\color{cyan}\rule[#1]{1pt}{#2}}}\hfill}
\titleformat{\section}{\Large\bfseries}{\thesection}{1em}{#1\,\sectionrule[0.5ex]{1.5pt}}

\begin{document}

  \section{First Section}
  \blindtext
  
  \section{Second Section}
  \blindtext

\end{document} 

水平线

相关内容