我在尝试做一些简单的事情时遇到了问题。我正在使用Rmarkdown / knitr创建一个HTML文件,在该文件中我想要一个固定的TOC(目录)。为此,我修改了一个.css文件,以包括几个选项:
#TOC {
position: fixed;
left: 0;
top: 10px;
width: 300px;
height: 1000%;
overflow:auto;
background-color: #eaf9ff;
font: 15.5px arial, sans-serif;
line-height: 1.6;
color: #000000;
}
而且,在Rmd中,我使用以下选项:
---
title: "Intro"
author: "ME"
output:
html_document:
css: camo.css
fig_caption: yes
fig_height: 7
fig_width: 9
highlight: zenburn
theme: readable
toc: yes
fontsize: 11.5pt
urlcolor: blue
editor_options:
chunk_output_type: console
---
这些选项创建一个固定的目录,该目录链接到我的HTML文件,但不包括目录的标题。我只想添加/个性化标题,例如:“目录列表”之类的东西,但是我不确定该怎么做...任何帮助都会很棒。