大家好,我试图解决这个问题,但我无路可走:
这是我的代码:
---
title: "A Multi-page HTML Document"
author: "Yihui Xie and Romain Lesur"
date: "`r Sys.Date()`"
output:
pagedown::html_paged:
toc: true
toc_depth: 3
# change to true for a self-contained document, but it'll be a litte slower for Pandoc to render
self_contained: false
---
# Exercise 1{-}
<div style="width: 100%; height: 20px; border-bottom: 1px solid black; text-align: center">
<span style="font-size: 40px; background-color: white; padding: 0 10px;">
Exercicio 1 <!--Padding is optional-->
</span>
</div>
Run Code Online (Sandbox Code Playgroud)
我想维护目录结构。换句话说,我想点击“练习 1”,它会将我带到练习一的页面。但我希望标题是下面这个自定义标题(我想点击“练习 1”,只看到下面的练习 1 样式): …
我有一个输出正确渲染的html代码的函数,但是将其封装在带有'results =“ asis”`的markdown文档R代码块中会失败。我将问题追溯到HTML代码中的空格。我喜欢空格,因为它们使读取原始HTML文件更加容易。如果您可以考虑安装我的R软件包“ rockchalk”,则可以运行此程序并看到相同的内容。
我展示了问题是由以下MRE中HTML中的空格引起的(标记被视为代码的标记)。我得到的输出没有任何其他样式表魔术就可以使用:http : //pj.freefaculty.org/scraps/mre.html
向下滚动,您会看到表格已损坏,但是在筛选出多余的空格后,表格将按预期显示。
在您看来,这仅仅是我的用户错误,即依赖HTML代码中的空格,还是R markdown中“ asis”的错误。
---
title: "Guide Documents"
author:
- name: Paul Johnson
affiliation: Center for Research Methods and Data Analysis, University of Kansas
abstract:
Author, please REMEMBER TO INCLUDE AN ABSTRACT BEFORE FINALIZING THIS DOCUMENT!
date: "`r format(Sys.time(), '%Y %B %d')`"
output:
html_document:
highlight: haddock
---
```{r setup, include = FALSE}
##This Invisible Chunk is required in all CRMDA documents
outdir <- paste0("tmpout")
if (!file.exists(outdir)) dir.create(outdir, recursive = TRUE)
knitr::opts_chunk$set(echo = …Run Code Online (Sandbox Code Playgroud)