「Markdownは単純なものであり、それは実行されません」という回答になるのではないかと思いますが、(ほとんど)質問しても問題はありません。
R Markdownドキュメントを作成するとき、ブラウザでHTMLファイルを表示でき、見栄えがします。紙またはPDFとして印刷しようとすると、図の色は印刷されますが、構文の強調表示は印刷されません。印刷時に構文の強調表示を維持する方法はありますか?
例:
Minimal Example
=====
This text looks great in the file and the plot prints in color, but see commented code below.
```{r}
# this commented line will be green in the HTML file, but will be black when I print it
z <- cor(mtcars)
require(lattice) # 'require' will be blue in the HTML file, but will be black when I print it
levelplot(z)
```
RStudioで[HTMLを編む]ボタンを押して、ChromeまたはSafariでHTMLを開きますが、問題はありません。ブラウザからHTMLから印刷すると、構文の強調表示がすべて失われます。