0
Hum、私は、R Bookdownがhtmlウェブサイト上のラテックスで実際にphdを簡単に移行するために異なるhtml出力を生成する方法を理解しようとしています。あなたが見ることができるようにlatexファイルのブックダウン出力を使用してphd htmlサイトを生成する
\usepackage[backend=biber,backref=true, natbib=true, isbn=false, doi=true, url=true, style=authoryear,maxcitenames=1, maxbibnames=999, sorting=nyt, refsection=chapter, hyperref]{biblatex}
、私を許すビーバーとnatbibと私の論文の利用biblatexは\autocite
と\autocites
コマンドを使用します。私はマークアップで([@key]や@key引用ではなく)このタイプの引用を直接再利用するために複数の設定を試していますが、成功することはありません。あなたはRmd
ファイルをレンダリングする際、以下の規則が適用されていることを心に留めておく必要がある
@article{Pumain1997,
author = {Pumain, Denise},
doi = {10.3406/spgeo.1997.1063},
issn = {0046-2497},
journal = {Espace g\'{e}ographique},
number = {2},
pages = {119--134},
title = {{Pour une th\'{e}orie \'{e}volutive des villes}},
url = {http://www.persee.fr/web/revues/home/prescript/article/spgeo\_0046-2497\_1997\_num\_26\_2\_1063},
volume = {26},
year = {1997}
}
私は理解しています。 – reyman64