英文:
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
这不是很棒吗?
<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: "10.5pt"
keep-tex: true
geometry:
- left=1in
- right=1in
- top=1in
- bottom=1in
---
## Quarto
Isn't it awesome?
~~~
<hr>
[![small font size for title][1]][1]
[1]: https://i.stack.imgur.com/Xugv1.png
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论