在标题下方添加水平线,长度为开始,结束,厚度为

在标题下方添加水平线,长度为开始,结束,厚度为

我想在磁贴下方添加具有一定厚度的分段规则。它不会覆盖整个页面或整个标题长度,而且我可以控制其厚度。

我用来\maketitle做标题

我尝试使用titlesec包,但它只适用于部分,因为\titlespacing{}不接受\title命令。

答案1

像这样?

\documentclass{book}
\usepackage{tikz}

\begin{document}

\begin{titlepage}
\begin{center}
\huge \bfseries My Title
\begin{tikzpicture}
    \path (0,0)--(\textwidth,0);
    \tikzset{shift={(0,0)}}
    \draw [line width=0.5mm] (4, 0) -- (\textwidth,0);%<--- (4,0) is starting point of the line.
\end{tikzpicture}

\vspace{0.75cm}
\large \bfseries My Subtitle
\end{center}
\end{titlepage}

\chapter{First}
\end{document}

在此处输入图片描述

相关内容