gpt4 book ai didi

r - 在 r bookdown 中更改章节颜色(pdf 输出)

转载 作者:行者123 更新时间:2023-12-04 15:49:09 25 4
gpt4 key购买 nike

在常规的 bookdown 格式中,每一章都以粗体开头:

第 1 章

章节标题

我正在尝试将“第 1 章”的颜色从黑色改为深灰色。我对 LaTeX 完全陌生,但是根据其他 Stackoverflow 问题将一些代码拼凑在一起,以自定义颜色。我创建了一个 mystyles.sty 文件,其中包含:

\usepackage{titlesec}
\usepackage{xcolor}

\definecolor{battleshipgrey}{rgb}{0.52, 0.52, 0.51}
\titleformat{\thechapter}
{\color{battleshipgrey}\normalfont\Large\bfseries}
{\color{battleshipgrey}\chapter}{1em}{}

我的 YAML header 是:

title: "My Title"
author: "Me"
date: ""
output: pdf_document
bibliography: [bib.bib]
documentclass: book
geometry: left=4cm, right=3cm, top=2.5cm, bottom=2.5cm
link-citations: yes
classoption: openany
biblio-style: apalike
subparagraph: true

我有一个包含以下代码的 _output.yml:

bookdown::pdf_book:
includes:
in_header: mystyles.sty
latex_engine: xelatex
citation_package: natbib
keep_tex: no
mainfont: Bookman

我在 mystyles.sty 文档中指定的错误是什么?目前,颜色没有任何变化。我试过指定:

\titleformat{\chapter}
{\color{battleshipgrey}\normalfont\Large\bfseries}
{\color{battleshipgrey}\thechapter}{1em}{}

但这会使章节编号和标题变成灰色,但章节标题的格式会更改为:

1 章节标题

最佳答案

您可以尝试使用 mystyes.sty 中的 xcolorsectsty 包:

\usepackage{xcolor}
\usepackage{sectsty}
\definecolor{battleshipgrey}{rgb}{0.52, 0.52, 0.51}
\chapterfont{\color{battleshipgrey}} % sets colour of chapters

无论如何,这似乎对我有用,并且会生成没有数字的灰色章节标题。

关于r - 在 r bookdown 中更改章节颜色(pdf 输出),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54575862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com