系统的LaTeX里没有装inconsolata这个宏包。
极简 R 包建立方法
1 年 后
写得很棒,照着做了一遍,除了开始出了点问题之外就很顺利的成功了! 就是不明白rtools到底用到了吗? 还有DESCRIPTION里面的AUTHOR信息得按照里面的格式写才行,要不最后build的时候通不过。总之,很感谢
楼主这个用到latex了吗? 是我没看见吗? 我也是照着做的,没有用到什么latex啊
15 天 后
[未知用户] Error:
LaTeX errors when creating PDF version.
This typically indicates Rd problems.
LaTeX errors found:
!pdfTeX error: pdflatex.EXE (file t1-zi4r-0): Font t1-zi4r-0 at 540 not found
==> Fatal error occurred, no output PDF file produced!
Solution!
initexmf --update-fndb
initexmf --edit-config-file updmap
The latter command should open updmap.cfg in your default editor, commonly Notepad.
Add the line
Map zi4.map
to updmap.cfg, save and close. Then, in the command window, type
initexmf --mkmaps
LaTeX errors when creating PDF version.
This typically indicates Rd problems.
LaTeX errors found:
!pdfTeX error: pdflatex.EXE (file t1-zi4r-0): Font t1-zi4r-0 at 540 not found
==> Fatal error occurred, no output PDF file produced!
Solution!
initexmf --update-fndb
initexmf --edit-config-file updmap
The latter command should open updmap.cfg in your default editor, commonly Notepad.
Add the line
Map zi4.map
to updmap.cfg, save and close. Then, in the command window, type
initexmf --mkmaps
6 个月 后
谢谢楼主分享,自己把@export给省略了,后来一直出错,export只是让读者可见,这个为什么不可以省略?麻烦楼主解答下,非常感谢。
6 个月 后
请问在创建R package时如何,如何实现自动安装依赖的包。试了Depends和Imports,安装了自建的包后,library(),可以将依赖的包加载进来。但是别人没按依赖的包时,安装我创建的包,怎样实现自动安装依赖的包?
9 个月 后
首先,谢谢楼主了,我按照这个方法做了一个自己的R包,但是安装之后,我试了我的包里面的函数,显示没有那个函数,在测试的时候明明好使的,请问楼主,能帮忙解答下这是为什么吗?
1 年 后
DanielDuan 你没有在注释里面加入export
熟悉latex的话可以用package.skeleton()直接开怼;我写多元高斯的时候就这么干的,很多小细节容易出小问题特别闹心。
原生工具的话用devtools其实挺方便,流程基本按照这个来就可以:https://github.com/rstudio/cheatsheets/raw/master/package-development.pdf