我正在使用 bookdown 来制作带有数学的 epub。我通常将 muy bookdown book 导出为 pdf (latex) 和 epub3。对于一个特定的文件,使用 pdf_book() 选项运行良好,但是在使用 epub_book() 选项时出现此错误:
render_book("tema25.Rmd", epub_book())
processing file: _main.Rmd
|.................................................................| 100%
ordinary text without R code
output file: _main.knit.md
Error in seq.default(dots[[1L]][[11L]], dots[[2L]][[11L]]) :
'to' cannot be NA, NaN or infinite
我的 yaml 选项是
---
title: "Title"
author: Me
geometry:
paperwidth=9.0cm,
paperheight=12.1cm,
margin=0pt
webtex: /home/javier/Dropbox/sec/texsvg.hs
lang: es-ES
documentclass: book
toc: yes
---
我该如何解决这个问题?
谢谢