travis 使用新 LATEX 格式的 R BioC 包失败



我有一个Bioconductor软件包,我们正在移动到最后一个版本来编译小插图,我在travis期间收到缺少样式字体的错误:beramono.sty

https://travis-ci.org/lpantano/isomiRs

创建小插图的软件包是BiocStyle,他们引入了以下依赖项:

https://github.com/Bioconductor/BiocStyle/search?utf8=✓&q=贝拉莫诺&类型=

我试图在我的 travis 中安装那个丢失的文件,但似乎不起作用。您对安装该字体有什么建议吗?

提前非常感谢!

将其添加到 .travis.yml 已修复:

before_install: - tlmgr install bera - tlmgr install nowidow - tlmgr install parnotes - tlmgr install marginfix

尝试texlive-fonts-extra

$ locate beramono
/usr/share/texlive/texmf-dist/tex/latex/bera/beramono.sty
$ dpkg -S $(locate beramono) 
texlive-fonts-extra: /usr/share/texlive/texmf-dist/tex/latex/bera/beramono.sty
$ 

或者跳过构建小插曲,这就是我在特拉维斯所做的......

最新更新