将bib文件转换为\ bibitem [\ protect \ citeauthoryear

时间:2019-09-10 15:29:49

标签: latex

我有一个参考文件(围嘴文件),我想将其转换为

\ bibitem [\ protect \ citeauthoryear {Allen C.W。} {1973}] {b1} Allen C.W.,1973年, 天体物理量,$ {3 ^ {rd}} $ ed。 (伦敦阿斯隆出版社)

当我使用

    \nocite{*}
    \bibliographystyle{apalike}
    \bibliography{bibfile}

将ppl文件输出为

\ bibitem [Allen,1973] {allen1973astrophysical} 艾伦,C。〜W。 (1973)。

1 个答案:

答案 0 :(得分:0)

cloudFile.OpenRead(null, new BlobRequestOptions() { ServerTimeout = TimeSpan.MaxValue, RetryPolicy = new ExponentialRetry(TimeSpan.FromSeconds(5), 4), MaximumExecutionTime = TimeSpan.FromHours(3) }); natbib样式结合在一起可以得到类似的结果:

newapa

生成的.bbl文件:

\documentclass{article}

\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@BOOK{1973asqu.book.....A,
   author = {{Allen}, C.~W.},
    title = "{Astrophysical quantities}",
 keywords = {ASTROPHYSICS, ASTRONOMICAL CONSTANTS, TABLES, HANDBOOKS},
booktitle = {London: University of London, Athlone Press, |c1973, 3rd ed.},
     year = 1973,
   adsurl = {https://ui.adsabs.harvard.edu/abs/1973asqu.book.....A},
  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
\end{filecontents*}

\usepackage{natbib}

\begin{document}

\cite{1973asqu.book.....A}

\bibliographystyle{newapa}

\bibliography{\jobname}

\end{document}