gpt4 book ai didi

r - 在 Rmarkdown 的 YAML header 中设置数字的标题字体大小

转载 作者:行者123 更新时间:2023-12-04 09:32:10 26 4
gpt4 key购买 nike

我正在使用 Rstudios markdown 编写一份报告,我想使用 latex 和 html 将其编译为 pdf ......

是否可以以某种方式调整 ![caption](figure.jpg) 中包含的图像的标题字体大小?环境?目前 html 中的标题看起来像文本的其余部分。

最佳答案

这个答案显然已经被接受,但为了完整起见,我添加了问题的 PDF 方面。

如果您希望更改 PDF 文档的标题字体大小,我建议您使用 caption通过以下两种方法之一打包:

header 包含 - 选项:

---
title: "Title"
author: "Jorge Luis Borges"
header-includes:
- \usepackage[font={small}]{caption}
output:
pdf_document
---

这里的重点是 font={<font options>} .

in_header - 选项:
---
title: "Title"
author: "Jorge Luis Borges"
output:
pdf_document:
includes:
in_header: style.tex
---

哪里 style.tex包含在包含 .Rmd 文件的同一目录中。 style.tex文件需要包含 \usepackage[font={small}]{caption} .

和以前一样,这里的重点是 font={<font options>} .

caption包你有大量的自定义选项,仅举几例,见下文:
  • scriptsize = 非常小的尺寸
  • footnotesize = 通常用于脚注的大小
  • small = 小号
  • large = 大号
  • it = 斜体
  • bf = 粗体

  • 如需完整引用,请访问 official documentation .

    此外,这里有一些对 TexSE 网站上文章的交叉引用:

    Change the font of figure captions

    How to include Latex package in RMarkdown

    关于r - 在 Rmarkdown 的 YAML header 中设置数字的标题字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37136731/

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