quarto标题字体大小太大。我怎么让它变小?

huangapple go评论66阅读模式
英文:

quarto title font size is too large. How can I make it smaller?

问题

标题字体太大了,如标题所示。我如何将它变小?

这是我在YAML中的设置:

title: "Self-Statement"
format:
  pdf:
    fontsize: "10.5pt"
    keep-tex: true
geometry:
  - left=1in
  - right=1in
  - top=1in
  - bottom=1in
英文:

Like the title says. Quarto title font size is too large. How can I make it smaller?

This is what I have in YAML

title: "Self-Statement"
format: 
  pdf: 
    fontsize: "10.5pt"
    keep-tex: true
geometry:
  - left=1in
  - right=1in
  - top=1in
  - bottom=1in 

答案1

得分: 2

你可以在标题之前简单地使用不同的字体大小

---
title: \small 自我陈述
format:
  pdf:
    fontsize: "10.5pt"
    keep-tex: true
geometry:
  - left=1in
  - right=1in
  - top=1in
  - bottom=1in
---

## Quarto

这不是很棒吗?

quarto标题字体大小太大。我怎么让它变小?


<details>
<summary>英文:</summary>

You can simply use [different font sizes](https://latex-tutorial.com/changing-font-size/) before the title.


~~~
---
title: \small Self-Statement
format: 
  pdf: 
    fontsize: &quot;10.5pt&quot;
    keep-tex: true
geometry:
  - left=1in
  - right=1in
  - top=1in
  - bottom=1in
---

## Quarto

Isn&#39;t it awesome?
~~~

&lt;hr&gt;

[![small font size for title][1]][1]


  [1]: https://i.stack.imgur.com/Xugv1.png

</details>



huangapple
  • 本文由 发表于 2023年6月6日 09:17:04
  • 转载请务必保留本文链接:https://go.coder-hub.com/76410867.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定