我想在磁贴下方添加具有一定厚度的分段规则。它不会覆盖整个页面或整个标题长度,而且我可以控制其厚度。
我用来\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}