有人知道我该如何更改类文件中章节编号(或字母?)的颜色吗 harvard-thesis
?目前是深红色,我在模板中找不到颜色设置的位置...
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{harvard-thesis}[2012/04/05 v0.4 Harvard University Thesis Class]
\LoadClass[11pt, oneside, a4paper]{book}
% Required packages
\RequirePackage{graphicx}
\RequirePackage{hyperref}
\hypersetup{
linktocpage,
colorlinks,
citecolor=cobalt,
filecolor=black,
linkcolor=black,
urlcolor=black,
}
\RequirePackage[centertags]{amsmath}
\RequirePackage{amssymb}
%\RequirePackage[numbers, comma, sort&compress]{natbib}
\RequirePackage[small, md, sc]{titlesec}
\RequirePackage[tight,nice]{units}
\RequirePackage{verbatim}
% colors
\RequirePackage{color}
\RequirePackage{xcolor}
%\definecolor{chaptergrey}{rgb}{0.6471, 0.1098, 0.1882}
\definecolor{cobalt}{rgb}{0.0, 0.28, 0.67}
%\definecolor{Crimson}{rgb}{0.6471, 0.1098, 0.1882}
\RequirePackage{url}
\RequirePackage[titles]{tocloft}
\setcounter{tocdepth}{2}
\renewcommand{\cftchapfont}{\normalsize \scshape}
\renewcommand\bibname{References}
\renewcommand\listfigurename{Listing of figures}
%\raggedright
\RequirePackage{pdfsync} %do pdf synchronization [andy]
\usepackage[closeFloats, noSeparatorLine]{fltpage} %use the custom modified fltpage package
\RequirePackage{afterpage}
\RequirePackage{lettrine} % big letter at start of chapter
\RequirePackage[width=6.4in, letterpaper]{geometry}
\renewcommand{\LettrineFontHook}{\normalfont\color{cobalt}}
\usepackage{fancyhdr}
\pagestyle{fancy} % options: empty , plain , fancy
%\fancyhead[LE,RO]{\slshape \rightmark}
%\fancyhead[LO,RE]{\slshape \leftmark}
%\fancyfoot[C]{\thepage}
\RequirePackage[]{quotchap}
\definecolor{chaptergrey}{rgb}{0.6,0,0}
\RequirePackage{titling}
\RequirePackage{setspace}
\RequirePackage{booktabs} % for much better looking tables
\RequirePackage[labelfont={sf,bf,small},textfont={sf,small},margin=0pt, ]{caption}
\doublespacing
答案1
答案2
chaptergrey
章节编号的颜色由(根据软件包)设置quotchap
。请注意,实际默认颜色不是灰色,而是暗红色。(我不会将这种暗色称为“深红色”……)在\definecolor{chaptergrey}{rgb}{.,.,.}
类文件末尾查找参数的定义。
关于类文件的一些补充说明。LaTeX 类文件没有任何内容能让我相信它实际上是按照哈佛大学的要求格式化论文的。请注意,世界上任何人都可以调用该文件harvard-thesis.cls
;这样做并不意味着它是与哈佛相关的文档!我的主要建议很简单:不要使用这个类文件——除非您完全准备好忍受许多挫折并准备浪费大量宝贵的时间。类文件加载了在任何情况下都不应再使用的包(例如pdfsync
),它加载了一些已弃用的包(例如units
),它加载了包,即使没有(有效)加载它们的理由(例如,它同时加载color
和xcolor
),它没有指定重要的参数(例如,查看geometry
包是如何加载的),并且在错误的时间加载其他包(例如hyperref
)。简而言之,这是一个烂摊子。我已经警告过你了。