web-dev-qa-db-ja.com

RマークダウンリンクがPDFに編まれたときに青でフォーマットされない

何らかの理由で、Rマークダウン(rmd)のリンクが青でフォーマットされていません。以下の単純なrmdをpdfに編むと、テキストの色が黒のままになります。その上にマウスを移動したときにのみ、実際にリンクであることがわかります。 htmlに編むと、リンクが青くなります。もちろん、ラテックスラッパーを使用することもできますが、なぜそうなのでしょうか。

sessionInfo()Rバージョン3.3.0(2016-05-03)プラットフォーム:x86_64-w64-mingw32/x64(64ビット)実行環境:Windows 7 x64(ビルド7601)Service Pack 1は名前空間を介してロードされます(接続されません) ):knitr_1.15

RStudio 1.0.44

---
title: "R Notebook"
output:
  pdf_document: default
  html_notebook: default
---

```{r, echo=F}
# tex / pandoc options for pdf creation
x <- Sys.getenv("PATH")
y <- paste(x, "E:\\miktex\\miktex\\bin", sep=";")
Sys.setenv(PATH = y)
```

[link](www.rstudio.com)

enter image description here

26
Triamus

追加 urlcolor: blue yamlに。

---
title: "R Notebook"
output:
  pdf_document: default
  html_notebook: default
urlcolor: blue
---

```{r, echo=F}
# tex / pandoc options for pdf creation
x <- Sys.getenv("PATH")
y <- paste(x, "E:\\miktex\\miktex\\bin", sep=";")
Sys.setenv(PATH = y)
```

[Link to R Studio](www.rstudio.com)

Bare urls will also be highlighted:

http://www.rstudio.com

enter image description here

54
eipi10