2015-04-22 43 views
3

我想引用一個URL鏈接到R降價,我已經嘗試了輸入,如「addlink」 或「地址< - ....」 他們都不工作。 如何在R markdown中添加鏈接?如何爲R markdown添加URL?

謝謝!

編輯:從評論運算的代碼是

{r} [linked phrase] (www.bit.ly/1EqAdIp) 
+3

請添加一些代碼! – Dev

+3

http://rmarkdown.rstudio.com/authoring_basics.html –

+0

我試過這一個:[linked phrase](http://bit.ly/1EqAdIp),但它仍然不工作:( –

回答

3

你不應該把超鏈接將R代碼塊中。 xxx是Markdown語法。如果你把它放在{r}之後,knitr/rmarkdown會把它當作R代碼的一部分,當然,R會產生一個錯誤信息。

解決方案:去除{r}

13

注意到@下面浩的答案,那這一定是主要的文本,而不是內部的代碼塊:

this fabulous resource

[I'm an inline-style link](https://www.google.com) 

[I'm an inline-style link with title](https://www.google.com "Google's Homepage") 

[I'm a reference-style link][Arbitrary case-insensitive reference text] 

[I'm a relative reference to a repository file](../blob/master/LICENSE) 

[You can use numbers for reference-style link definitions][1] 

Or leave it empty and use the [link text itself] 

Some text to show that the reference links can follow later. 

[arbitrary case-insensitive reference text]: https://www.mozilla.org 
[1]: http://slashdot.org 
[link text itself]: http://www.reddit.com 
2

如果您正在使用所有你需要做的是在標記(白色)區域:

[linked phrase](www.bit.ly/1EqAdIp) #no space, no {r} 

通過這種方式,您可以在文本(=標記)處輸入超鏈接,而不是頁面的交互部分(〜R)。