作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 R 包中有以下描述文件
Package: blah
Title: What the Package Does (one line, title case)
Version: 0.0.0.9000
Authors@R: person("Jon", "Snow", email = "jon.snow@jonsnow.ac.uk", role = c("aut", "cre"))
Description: What the package does (one paragraph).
Depends: R (>= 3.5.1)
License: What license is it under?
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.1.0.9000
R CMD Rd2pdf <work directory>
我设法制作了一本手册。
devtools
之类的软件包,
knitr
,
roxygen2
和
testthat
.任何建议将不胜感激。
最佳答案
如果要包含多个作者,则必须将所有人都包裹在 c()
中。 .
见 DESCRIPTION以 sf 为例,它看起来像这样:
Authors@R:
c(person(given = "Edzer",
family = "Pebesma",
role = c("aut", "cre"),
email = "edzer.pebesma@uni-muenster.de",
comment = c(ORCID = "0000-0001-8049-7069")),
person(given = "Jeroen",
family = "Ooms",
role = "ctb",
comment = c(ORCID = "0000-0002-4035-0289")),
person(given = "Kirill",
family = "Müller",
role = "ctb"))
Author: Lax Chan
关于r - 如何在 R 包的手册中包含 Authors@R?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54133136/
我是一名优秀的程序员,十分优秀!