如何强制 rmarkdown pdf 输出在新页面中启动 table 内容?

How to force rmarkdown pdf output to start the table of contents in a new page?

我想在编织的时候在table内容之前分页。现在它在标题(第一页)之后显示 table 内容,这在美学上并不令人愉悦。

对您来说最简单的解决方案 - 将文档类更改为报告(table 的内容将在第二页)。

---
title: "test"

header-includes: 
 \usepackage{geometry}
 \geometry{top=0.75in,left=3in,bottom=0.75in,right=0.80in}

output:
  pdf_document:
    toc: true
    number_sections: true
documentclass: report   
---

\chapter{First}

\chapter{Second}