目前我有一个列表
[1] Some Author. Some Book. Viley, 2010. 122 pages.
[2] Other Author. Other Book. Springer, 2020. 211 pages.
[3] Lorem Ipsum. Dolor sit amet. Consectetur, MDCLXIV. Much pages.
....
当我 \cite 时,我得到 [1]、[2] 等等。
但我想获得如下参考
You can read some more in the books [Some Author, 2010] and [Other Author, 2020].
But the most extremely astonishing conclusions can be found at [That good old book].
和列表如下
[Some Author, 2010] Some Author. Some Book. Viley, 2010. 122 pages.
[Other Author, 2020] Other Author. Other Book. Springer, 2020. 211 pages.
[That good old book] Lorem Ipsum. Dolor sit amet. Consectetur, MDCLXIV. Much pages.
....
有没有什么办法可以得到它?
当然,我需要从 \cite 到列表内相应条目的所有链接才能正常工作。
答案1
使用apalike
样式代替abbrv
。
例子 :
\documentclass[a4paper,10pt]{article}
\begin{document}
This is an example of a paragraph with in-text
citations using the apalike BibTeX style.
Here is a reference to a journal article with
a single author \cite{article1}, to a journal
article with two authors \cite{article2} and
three authors \cite{article3}, and to a book
with four authors \cite{book4}.
\bibliographystyle{apalike}
\bibliography{sampleBibFile}
\end{document}