删除 pdf 中 Rmarkdown 代码块中的斜体(# 注释)

Remove italics (# comments) in Rmarkdown code chunks in pdf

我正在寻找一种方法来删除 Rmarkdown 代码块中的斜体注释

---
output:
  pdf_document:
    keep_tex: true
    number_section: no
---

```{r}
# This is a test.
```

以及结果。

有没有办法让它不斜体化?

谢谢,

一些代码突出显示样式不会将注释显示为斜体,包括 haddockkatezenburn。有关可用样式的预览,请参阅 here

---
output:
  pdf_document:
    keep_tex: true
    number_section: no
    highlight: kate
---

如果您需要创建自定义语法高亮主题,pandoc手册中的说明是here