使用 Bookdown 在 Gitbook 中文本消失
Text vanishes in Gitbook using Bookdown
我几个月前在 R 中使用 bookdown
开发 gitbook
。今天,我再次开始我的工作,但是当我渲染这本书时,输出的字体发生了巨大的变化。它消失了!我不记得对本书的 TAML 进行过任何更改。这就是现在的样子。在 WELCOME 一词之后,文本变得越来越轻,直到完全消失。它有一种消失的效果,我不知道我是怎么得到的。
感谢您的帮助。
最佳,
这是我的_output.yml
bookdown::gitbook:
config:
toc:
collapse: section
scroll_highlight: yes
before: |
<li><a href="./">PovcalNet Internal Guidelines</a></li>
after: |
<li><a href="https://github.com/xxxxx/Povcalnet_internal_guidelines" target="blank">Published with bookdown</a></li>
download: ["pdf", "epub"]
toolbar:
position: fixed
edit : null
search: yes
fontsettings:
theme: white
family: sans
size: 2
sharing:
facebook: no
github: no
twitter: no
linkedin: no
weibo: no
instapaper: no
vk: no
info: yes
bookdown::pdf_book:
includes:
in_header: preamble.tex
latex_engine: xelatex
citation_package: natbib
keep_tex: yes
bookdown::epub_book:
stylesheet: style.css
这是我的 _bookdown.yml
book_filename: "Povcalnet_internal_guidelines"
repo: https://github.com/xxxxxx/Povcalnet_internal_guidelines/
output_dir: "docs"
delete_merged_file: true
language:
label:
fig: "Figure "
tab: "Table "
ui:
edit: "Edit"
chapter_name: "Chapter "
rmd_files: [
"index.Rmd",
"intro.Rmd",
"Folder_structure.Rmd",
"Collaboration_in_Git.Rmd",
"DM_Group_data.Rmd",
"Handover.Rmd",
"references.Rmd",
]
before_chapter_script: "_common.R"
而且,我正在使用以下指令渲染这本书,
bookdown::render_book("index.Rmd", "bookdown::gitbook")
我发现了问题。基本上,在我的一个 .Rmd 文件中,我使用 DiagrammeR
包创建了一个图表。当我的一位同事删除图表时,问题就消失了,但我们没有图表。但是,我创建了一个单独的 .mmd(美人鱼)文件并更新了包 glue
和 DiagrammeR
。所有这些都解决了问题。
谢谢。
我几个月前在 R 中使用 bookdown
开发 gitbook
。今天,我再次开始我的工作,但是当我渲染这本书时,输出的字体发生了巨大的变化。它消失了!我不记得对本书的 TAML 进行过任何更改。这就是现在的样子。在 WELCOME 一词之后,文本变得越来越轻,直到完全消失。它有一种消失的效果,我不知道我是怎么得到的。
感谢您的帮助。
最佳,
这是我的_output.yml
bookdown::gitbook:
config:
toc:
collapse: section
scroll_highlight: yes
before: |
<li><a href="./">PovcalNet Internal Guidelines</a></li>
after: |
<li><a href="https://github.com/xxxxx/Povcalnet_internal_guidelines" target="blank">Published with bookdown</a></li>
download: ["pdf", "epub"]
toolbar:
position: fixed
edit : null
search: yes
fontsettings:
theme: white
family: sans
size: 2
sharing:
facebook: no
github: no
twitter: no
linkedin: no
weibo: no
instapaper: no
vk: no
info: yes
bookdown::pdf_book:
includes:
in_header: preamble.tex
latex_engine: xelatex
citation_package: natbib
keep_tex: yes
bookdown::epub_book:
stylesheet: style.css
这是我的 _bookdown.yml
book_filename: "Povcalnet_internal_guidelines"
repo: https://github.com/xxxxxx/Povcalnet_internal_guidelines/
output_dir: "docs"
delete_merged_file: true
language:
label:
fig: "Figure "
tab: "Table "
ui:
edit: "Edit"
chapter_name: "Chapter "
rmd_files: [
"index.Rmd",
"intro.Rmd",
"Folder_structure.Rmd",
"Collaboration_in_Git.Rmd",
"DM_Group_data.Rmd",
"Handover.Rmd",
"references.Rmd",
]
before_chapter_script: "_common.R"
而且,我正在使用以下指令渲染这本书,
bookdown::render_book("index.Rmd", "bookdown::gitbook")
我发现了问题。基本上,在我的一个 .Rmd 文件中,我使用 DiagrammeR
包创建了一个图表。当我的一位同事删除图表时,问题就消失了,但我们没有图表。但是,我创建了一个单独的 .mmd(美人鱼)文件并更新了包 glue
和 DiagrammeR
。所有这些都解决了问题。
谢谢。