Latex中如何设置标题字体颜色

发布于 2024-09-28 07:19:10 字数 26 浏览 3 评论 0原文

Latex 中可以更改标题字体颜色吗?

Is it possible to change the header font color in Latex?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烂人 2024-10-05 07:19:10

您可以查看 sectsty 包。

secsty 包提供了一组命令,用于更改标准 LATEX 2ε 文档类中各个章节标题所使用的字体 1

从手册中:

确保您在文档中包含该软件包,方法是在您的
文件序言:

\usepackage{sectsty}

然后您将可以使用一些新命令。例如:

\allsectionsfont{\sffamily}

将为您提供所有部分标题的 sanserif。
 

You could have a look at the sectsty package.

The secsty package provides a set of commands for changing the fount 1 used for the various sectional headings in the standard LATEX 2ε document classes

From the manual:

Make sure you include the package in your document by saying in your
document preamble:

\usepackage{sectsty}

You will then have some new commands available. For example:

\allsectionsfont{\sffamily}

will give you sanserif for all sectional headings.
 

薔薇婲 2024-10-05 07:19:10

如果您想一次性更改节标题的字体颜色,则需要重新定义 startsection 命令。

以下链接有自定义sectiong标题字体颜色的详细说明,
标题和章节标题

我已复制粘贴相关内容需要插入到序言中的代码,

\renewcommand\section{%
\@startsection{section}{1}{\z@}%
              {-3.5ex \@plus -1ex \@minus -.2ex}%
              {2.3ex \@plus.2ex}%
              {\color{RoyalBlue}\sffamily\Large\bfseries}}
\renewcommand\subsection{%
\@startsection{subsection}{2}{\z@}%
              {-3.25ex\@plus -1ex \@minus -.2ex}%
              {1.5ex \@plus .2ex}%
              {\color{RoyalBlue}\sffamily\large\bfseries}}

另外,您必须记住导入颜色包

\usepackage{color}

这里是有关颜色的更多信息的链接,
颜色信息

If you want to change the section heading's font color all at once, then you need to re-define the startsection command.

The following link has a detailed description of customizing sectiong headings' font color,
Title and Section Headings

I have copy pasted the relevant code that needs to be inserted into the preamble,

\renewcommand\section{%
\@startsection{section}{1}{\z@}%
              {-3.5ex \@plus -1ex \@minus -.2ex}%
              {2.3ex \@plus.2ex}%
              {\color{RoyalBlue}\sffamily\Large\bfseries}}
\renewcommand\subsection{%
\@startsection{subsection}{2}{\z@}%
              {-3.25ex\@plus -1ex \@minus -.2ex}%
              {1.5ex \@plus .2ex}%
              {\color{RoyalBlue}\sffamily\large\bfseries}}

Also, you must remember to import the color package

\usepackage{color}

Here is the link for more information on colors,
Color Info

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文