章节标题样式的问题

章节标题样式的问题

你能帮我解决这个问题吗?好吧,我试着让我的章节标题更有趣,我从 Vincent Zoonekynd 的网页上找到了一种我喜欢的风格,http://zoonek.free.fr/LaTeX/LaTeX_samples_chapter/0.html

但是,当我编译此代码时,它出现错误:file psboxit.sty not found

先感谢您

答案1

可能不是最优雅的解决方案,但也许是使用所需格式的起点titlesec

\documentclass[12pt,a4paper]{book}
\usepackage{titlesec,calc,xcolor,lipsum}

\titleformat{\chapter}[display]{\bfseries}{}{0pt}%
  {\raisebox{-5mm}[0pt][0pt]{%
    \begin{minipage}{20mm}
      \centering{\mdseries\footnotesize\textsc{Chapitre}}\\[2pt]%
      \rule{10mm}{30mm}\hspace{-10mm}%
      \raisebox{25mm}{\parbox{10mm}{\centering\textcolor{white}{\thechapter}}}%
    \end{minipage}}%
  \rule{\textwidth-20mm}{.4pt}\\%
  \hspace*{25mm}}[\vspace*{10mm}]

\begin{document}
\chapter{Introduction}
\lipsum[1]

\end{document}

在此处输入图片描述


编辑:

您可能想要为无数章节式的标题添加单独的格式:

\titleformat{name=\chapter,numberless}[display]
  {\bfseries}{}{0pt}{\rule{\textwidth}{.4pt}\\%
  \hspace*{5mm}}

相关内容