我找到了一篇论文,其中的章节标题非常漂亮,我想使用它。我需要什么软件包,我该如何创建如下所示的标题。另外,如果您有或知道任何漂亮的标题,请分享!
答案1
这是一个使用titlesec
包裹:
我使用了该命令的一般格式titleformat
:
% from the titlesec package
%\titleformat{ command }
% [ shape ]
% { format }{ label }{ sep }{ before-code }[ after-code ]
您可以通过研究文档以及查看此网站上的其他类似问题来找到更多信息。
这是一个完整的 MWE,可供使用:
% arara: pdflatex
\documentclass{report}
\usepackage{lipsum}
\usepackage[explicit]{titlesec}
% title format for the chapter
\titleformat{\chapter}
{\bfseries\large}
{}
{0pt}
{\titlerule[3pt]~\raisebox{-1.5pt}{\sc{\chaptername}~\thechapter}~\titlerule[3pt]%
\\\vspace{.05cm}\titlerule\\\filcenter #1 \\\vspace{.25cm}\titlerule}
\begin{document}
\chapter{First chapter}
\lipsum[1]
\chapter{Second chapter}
\lipsum[2]
\end{document}
您提到您可能想看看其他想法;这是另一个想法,再次使用该titlesec
包但没有选项explicit
- 我使用该tcolorbox
包在章节号周围放置了一个框。我不知道我是否会推荐它用于论文,但它可能会给你一些进一步的想法:
代码如下:
% arara: pdflatex
% !arara: indent: {overwrite: yes}
\documentclass{report}
\usepackage{lipsum}
\usepackage{titlesec}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
% title format for the chapter
% custom chapter
\titleformat{\chapter}
{\normalfont\Large\filleft\bfseries} % format applied to label+text
{} % label
{1pc} % horizontal separation between label and title body
{%
% draw a box around the chapter number
\begin{tcolorbox}[
enhanced,flushright upper,
boxrule=1.4pt,
colback=white,colframe=black!50!yellow,
drop fuzzy midday shadow=black!50!yellow,
width=2.8cm]
\resizebox{2cm}{!}{\color{gray!80}\thechapter}%
\end{tcolorbox}\Huge} % before the title body
[] % after the title body
\begin{document}
\chapter{First chapter}
\lipsum[1]
\chapter{Second chapter}
\lipsum[2]
\end{document}