gpt4 book ai didi

r - 如何将标题添加到 R markdown TOC

转载 作者:行者123 更新时间:2023-12-04 09:17:40 24 4
gpt4 key购买 nike

是否可以为 R Markdown 文档生成的 TOC 添加标题。

具体来说,我现在有这样的事情:

---
title: "The Rebel Base Locations"
author: "Darth Vader"
date: "A long time ago in a galaxy far far away"
output:
html_document:
css: custom.css
toc: true
toc_depth: 3
number_sections: true
---

我想要的是 TOC 有一个名为“内容”的标题。我能够使用一些 css 将它推到左边。

最佳答案

您可以在 html 模板中的目录之前添加一个新字段。关注 this instructions , 做这个:

  • 将 html 模板复制到您的 .rmd 文件并更改 $toc$字段如下:

  • $if(toc)$
    <div id="$idprefix$TOC">
    <h1 class="toctitle">$toctitle$</h1>
    $toc$
    </div>
    $endif$
  • 然后,添加 toctitletemplate字段到您的 RMarkdown 文件。例如:

  • toctitle: "Contents"
    output:
    html_document:
    template: toctitle.html
    css: custom.css
    toc: true
    toc_depth: 3
    number_sections: true

    这应该在您的 TOC 之前添加标题。您可以进行其他修改,例如更改自 h1到另一个标签和/或使用 CSS 上的字段类。如果你有不使用默认模板的问题(mathjax 不起作用),你可以更改默认样式,而不是添加 totctitle稍后到不同的 rmd 文件应该没有问题。

    关于r - 如何将标题添加到 R markdown TOC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30880084/

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