首页 > 解决方案 > Bookown' 参考书目多种语言

问题描述

我需要放两个参考部分。参考文献是相同的,但在第一部分它必须是俄文,第二部分是英文(参见 png 示例)。我应该如何使用 R+Bookdown+Zotero/Juris-M 创建多种语言的参考书目? 在此处输入图像描述

标签: rr-markdownbookdownbibliography

解决方案


LaTeX/PDF 输出的部分解决方案。

  • 我从bookdown-start的克隆开始
  • index.Rmd_output.yml我删除了参考书目特定的东西
  • index.Rmd我用西里尔字符定义了一个主要字体
  • 在我为参考书目_output.yml指定了一个包含after_body
  • 我将LaTeX 解决方案中的 LaTeX 代码添加到01-Introduction.Rmd,preamble.tex以及biblio.tex这两个*.bib文件

这里是相关的 git diff:

diff --git a/01-Introduction.Rmd b/01-Introduction.Rmd
index b94150e..372258d 100644
--- a/01-Introduction.Rmd
+++ b/01-Introduction.Rmd
@@ -2,3 +2,12 @@

 This is the first real chapter.

+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
+eiusmod \mycite{book1} tempor incididunt ut labore et dolore magna
+aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
+laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
+in reprehenderit \mycite{book1, article1} in voluptate velit esse
+cillum \mycite{article1} dolore eu fugiat nulla pariatur. Excepteur sint
+occaecat cupidatat non proident, sunt in culpa qui officia deserunt
+mollit anim id est laborum.
+
diff --git a/_output.yml b/_output.yml
index 112cf5b..a04dcf9 100644
--- a/_output.yml
+++ b/_output.yml
@@ -11,7 +11,8 @@ bookdown::gitbook:
 bookdown::pdf_book:
   includes:
     in_header: preamble.tex
+    after_body: biblio.tex
   latex_engine: xelatex
-  citation_package: natbib
+  keep_tex: yes
 bookdown::epub_book:
   stylesheet: style.css
diff --git a/biblio.tex b/biblio.tex
new file mode 100644
index 0000000..ea1eab8
--- /dev/null
+++ b/biblio.tex
@@ -0,0 +1,7 @@
+\chapter{Combined References}
+\bibliographystyle{ugost2008}
+\renewcommand{\bibsection}{\section{Список литературы}}
+\bibliography{biblio_ru}{}
+\bibliographystyleen{ugost2008}
+\renewcommand{\bibsection}{\section{References}}
+\bibliographyen{biblio_en}{}
diff --git a/index.Rmd b/index.Rmd
index ece36fe..e3bba35 100644
--- a/index.Rmd
+++ b/index.Rmd
@@ -4,8 +4,7 @@ author: "Sean Kross"
 date: "`r Sys.Date()`"
 site: bookdown::bookdown_site
 documentclass: book
-bibliography: [book.bib]
-biblio-style: apalike
+mainfont: Noto Serif
 link-citations: yes
 github-repo: seankross/bookdown-start
 url: 'http\://seankross.com/bookdown-start/'
diff --git a/preamble.tex b/preamble.tex
index dfd2e14..c522818 100644
--- a/preamble.tex
+++ b/preamble.tex
@@ -1 +1,8 @@
 \usepackage{booktabs}
+
+\usepackage[resetlabels]{multibib}
+\newcites{en}{english}
+\newcommand{\mycite}[1]{\cite{#1}\nociteen{#1}}
+
+\usepackage[square,numbers,sort&compress]{natbib}
+\renewcommand{\bibnumfmt}[1]{#1.\hfill}

不幸的是,当我使用时build book,第二个参考书目被忽略了,因为bibtex没有在附加en.aux文件上调用。我曾经能够latexmk通过设置配置 RStudio 以使用RSTUDIO_PDFLATEX,但这不再适合我。解决方法:

  • 利用keep_tex: yes
  • *.bib文件复制到输出目录
  • latexmk -xelatex ...在输出目录中手动调用

结果:

在此处输入图像描述

在此处输入图像描述


推荐阅读