我想更改章节名称样式,使其以这种方式显示
我该怎么办?谢谢!:)
答案1
您可以使用 ”标题安全« 相应地定制章节标题样式。
\documentclass[11pt]{report}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\usepackage{blindtext} % drop in actual document!
\titleformat{name=\chapter}[display]
{\normalfont\Large\itshape}
{\titlerule[1pt]\vspace{-10pt}\filleft%
\parbox[t]{5em}{%
\raggedleft%
\rule{\linewidth}{0.5ex}\newline%
\chaptertitlename\ \thechapter%
}%
}
{4pc}
{\normalfont\upshape\bfseries\Huge}
\begin{document}
\tableofcontents
\blinddocument % drop in actual document!
\end{document}