R: 垂直模式下的针织误差条 \vadjust
R: Knitting error rticles \vadjust in vertical mode
我尝试在 Rmd 文件中使用包 rticles
,以生成期刊出版物。尝试按原样编织模板时,出现以下错误
his is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
I was unable to find any missing LaTeX packages from the error log UC4_SupplySecurity.log.
! You can't use `\vadjust' in vertical mode.
l.300 \leavevmode\vadjust
pre{\hypertarget{ref-Neurobot2013}{}}%
Error: LaTeX failed to compile UC4_SupplySecurity.tex. See https://yihui.org/tinytex/r/#debugging for debugging tips. See UC4_SupplySecurity.log for more info.
Execution halted
在日志文件中,报同样的错误:
Package pdftex.def Info: UC4_SupplySecurity_files/figure-latex/Figure-1-1.pdf
used on input line 291.
(pdftex.def) Requested size: 241.86113pt x 241.86148pt.
! You can't use `\vadjust' in vertical mode.
l.300 \leavevmode\vadjust
我使用以下配置
- 乳胶
pdfTeX 3.141592653-2.6-1.40.22 (TeX Live 2021)
kpathsea version 6.3.3
Copyright 2021 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.37; using libpng 1.6.37
Compiled with zlib 1.2.11; using zlib 1.2.11
Compiled with xpdf version 4.03
- R 4.0.5
我做错了什么?
不幸的是,我无法提供可复制的示例,因为它对应于原始 Frontiers Journal Article
。 Elsevier Journal Article
模板仍然存在同样的问题。
如果我删除所有参考和引用,模板会编译 [@XY]
,但是没有参考的出版物是不行的。
您不能在 \texttt{enumerate} 或 \texttt{itemize} 环境中使用代码编织。也许这是你的问题。
我相信 文章 的这个问题已经在 Github 仓库中报告过
https://github.com/rstudio/rticles/issues/383 并且它已在 文章 0.20 中修复,但尚未在 CRAN 上。
所以现在,应该做
remotes::install_github("rstudio/rticles")
使用开发版,我可以毫无错误地渲染 Frontier 文章的默认模板。
我尝试在 Rmd 文件中使用包 rticles
,以生成期刊出版物。尝试按原样编织模板时,出现以下错误
his is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
I was unable to find any missing LaTeX packages from the error log UC4_SupplySecurity.log.
! You can't use `\vadjust' in vertical mode.
l.300 \leavevmode\vadjust
pre{\hypertarget{ref-Neurobot2013}{}}%
Error: LaTeX failed to compile UC4_SupplySecurity.tex. See https://yihui.org/tinytex/r/#debugging for debugging tips. See UC4_SupplySecurity.log for more info.
Execution halted
在日志文件中,报同样的错误:
Package pdftex.def Info: UC4_SupplySecurity_files/figure-latex/Figure-1-1.pdf
used on input line 291.
(pdftex.def) Requested size: 241.86113pt x 241.86148pt.
! You can't use `\vadjust' in vertical mode.
l.300 \leavevmode\vadjust
我使用以下配置
- 乳胶
pdfTeX 3.141592653-2.6-1.40.22 (TeX Live 2021)
kpathsea version 6.3.3
Copyright 2021 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.37; using libpng 1.6.37
Compiled with zlib 1.2.11; using zlib 1.2.11
Compiled with xpdf version 4.03
- R 4.0.5
我做错了什么?
不幸的是,我无法提供可复制的示例,因为它对应于原始 Frontiers Journal Article
。 Elsevier Journal Article
模板仍然存在同样的问题。
如果我删除所有参考和引用,模板会编译 [@XY]
,但是没有参考的出版物是不行的。
您不能在 \texttt{enumerate} 或 \texttt{itemize} 环境中使用代码编织。也许这是你的问题。
我相信 文章 的这个问题已经在 Github 仓库中报告过 https://github.com/rstudio/rticles/issues/383 并且它已在 文章 0.20 中修复,但尚未在 CRAN 上。
所以现在,应该做
remotes::install_github("rstudio/rticles")
使用开发版,我可以毫无错误地渲染 Frontier 文章的默认模板。