gpt4 book ai didi

r - Bookdown 文档未正确呈现输出

转载 作者:行者123 更新时间:2023-12-01 23:42:31 25 4
gpt4 key购买 nike

我有一个 bookdown 文档,在我的本地机器上可以很好地呈现,但是当我使用 GitHub Actions 将它作为一个自动化进程运行时,各个代码块的输出显示全部困惑: badly formatted output

这是本书的 GitHub 存储库:https://github.com/ries9112/cryptocurrencyresearch-org

这里是通过 GitHub Actions 自动运行的地方:https://github.com/ries9112/cryptocurrencyresearch-org/actions

为了帮助解决问题,我创建了一个单独的存储库作为一个更简单的示例,但我遇到了完全相同的问题。这是更简单示例的存储库:https://github.com/ries9112/bookdown-test

我部署了那个更简单的测试的结果,你可以在这里找到它们:https://brave-leakey-37b898.netlify.app/intro.html#here-adding-new-test enter image description here

本地的文档格式完全没问题,所以看起来我可能还需要安装其他东西,但我目前正在安装 pandoc 和 tinytex,我不知道还缺少什么。这是定义 GitHub 操作的 YAML 文件:

jobs:
build:
runs-on: macOS-10.15
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v1
- name: Install pandoc and pandoc citeproc
run: |
brew install pandoc
brew install pandoc-citeproc
- name: Install Packages
run: |-
Rscript -e "install.packages(c('pins','bookdown','tidyverse','DT'))"
- name: Refresh book
run: |-
Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::gitbook')"

有没有想过在这些安装步骤中可能遗漏的任何东西以使其正确呈现?我也在 Ubuntu 和 Windows 上尝试过,但遇到了同样的问题。

我还尝试了这些步骤来安装 pandoc 和 tinytex,但遇到了同样的问题:

      - uses: r-lib/actions/setup-pandoc@v1
- uses: r-lib/actions/setup-tinytex@v1

非常感谢任何有关如何解决此问题的想法!

Also posted to RStudio Community如果找到一个,将用答案更新两者。

最佳答案

我认为您需要停用 tidyverse 使用的 crayon 包启用的着色。

默认情况下,当您使用 setup-r 时,它会在 Github Action 上激活 https://github.com/r-lib/actions/blob/9598b8eeb6d88de7d76d580d84443542bbfdffce/setup-r/action.yml#L14-L16

所以你需要把它改成FALSE

      - uses: r-lib/actions/setup-r@v1
with:
crayon.enabled: 'FALSE'

在您的操作 yaml 文件中。

您也可以在 bookdown 项目中将其作为一个选项停用

options(crayon.enabled = FALSE)

您必须在 Github Action 上执行此操作,因为在 GHA 中使用蜡笔不会自动禁用。不知道为什么

关于r - Bookdown 文档未正确呈现输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64823120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com