减少四开本中标题和目录之间的间距

减少四开本中标题和目录之间的间距

我正在使用 Quarto 创建 PDF。当我选择不包含作者和日期时,标题和目录之间的距离并没有缩短,而是留下了垂直空间。我尝试使用 LaTeX 方法进行修改,但没有成功。这是原始设置:

---
title: "Supplemental Material 3: Preprocessed Effect Sizes from Invididual Source Data"
toc: true
format: pdf
editor: visual
---

PDF 输出

我将非常感激对这个问题的任何帮助!

答案1

---
title: "Supplemental Material 3: Preprocessed Effect Sizes from Invididual Source Data"
toc: false
number-sections: true
format: pdf
include-in-header:
- text: \renewcommand{\thesection}{\Roman{section}}   
---

```{=latex}
\vspace{-2.5cm}
\tableofcontents{}
```

# Statements 

# Formulas

姆韦

注:在 Rmarkdown 中对序言进行了补充:

header-includes:
- \renewcommand{\thesection}{\Roman{section}} 

也可以使用,但据我所知,没有 Quarto 的记录。

相关内容