我刚刚开始使用 Arsclassica/Classicthesis 排版我的论文提案的第一部分。Classicthesis 提供了命令\ctparttext{Where you can put some informational part preamble text here.}
。但是,当我使用 arsclassica 时它没有显示。有什么办法可以解决这个问题吗?
答案1
arsclassica.sty
重新定义\part
使用\titleformat
并抑制\ctparttext
;一个可能的解决方案是重新合并它,使用的定义添加它classicthesis.sty
:
\documentclass[parts]{scrbook}
\usepackage{classicthesis}
\usepackage{arsclassica}
\makeatletter
\titleformat{\part}[display]
{\normalfont\centering\large}%
{\thispagestyle{empty}\partname~\MakeTextUppercase{\thepart}}{1em}%
{\color{Maroon}\spacedallcaps}[\bigskip\normalfont\normalsize\color{Black}\begin{quote}\ct@parttext\end{quote}]
\makeatother
\begin{document}
\ctparttext{Where you can put some informational part preamble text here.}
\part{Test}
\end{document}