使用 bookdown 书中定义和说明的自定义块

using custom blocks defined and illustrated in bookdown book

bookdown book illustrates a number of useful custom blocks such as notes and warning symbols. The cookbook又在谈论他们了。

当你下载演示书开始使用时,这些自定义块没有办法使用,这是为什么?每当我尝试按照书中的说明使用它们时,它们都不会编译。为什么它们不只是演示书的基本实现的一部分?

由于它们不是基本演示书的一部分,如果您只是使用演示书作为 rmarkdown 书的起点,有人可以概述让它们工作的分步过程吗?

  1. 您需要将 类 添加到您的 css 文件:
.rmdcaution, .rmdimportant, .rmdnote, .rmdtip, .rmdwarning {
  padding: 1em 1em 1em 4em;
  margin-bottom: 10px;
  background: #f5f5f5 5px center/3em no-repeat;
}
.rmdcaution {
  background-image: url("../images/caution.png");
}
.rmdimportant {
  background-image: url("../images/important.png");
}
.rmdnote {
  background-image: url("../images/note.png");
}
.rmdtip {
  background-image: url("../images/tip.png");
}
.rmdwarning {
  background-image: url("../images/warning.png");
}
  1. 将图片放入指定文件夹。