首页 > 解决方案 > HTML 中的多个参考书目,使用关键字 - 可能吗?

问题描述

我在 R Markdown 中制作简历,并且我有以下代码使用 Latex 根据keywords={}bibtex 参考中的参数呈现多个参考书目部分:

\underline{\textbf{Publications}}

\begin{refsection}
\setlength\bibitemsep{\baselineskip}
\nocite{*}
\noindent\printbibliography[heading=none, keyword = mypapers]
\end{refsection}

\underline{\textbf{Presentations}}

\begin{refsection}
\setlength\bibitemsep{\baselineskip}
\nocite{*}
\printbibliography[heading=none, keyword = mypresentations]
\end{refsection}

产生的行为如下:R Markdown 使用两个单独的参考书目呈现 PDF:一个 Publication 部分,它从我的 .bib 文件中提取具有 mypublications 关键字的引用,以及一个单独的 Presentations 部分(来自具有 mypresentations 关键字的参考)。

输出是 PDF,但是如何在 HTML 中复制这种行为?

我很难找到这方面的信息;可能吗?提前感谢您提供的任何指导。

标签: htmllatexr-markdownbibtexbibliography

解决方案


推荐阅读