我使用 LyX 的默认“文章”文档类别。所有引用都显示为带括号的数字 [1]、[2] 等。我希望根据上下文在同一文档中使用两种不同的引用格式,例如:
- “准确解答 (Author1, Year1) 这个问题是不可能的,不过,Author2 (Year2) 最近提出了一个近似解”。
我怎样才能做到这一点?
答案1
在LyX
,转到
文档设置 > 参考书目 > Natbib
然后当你去
插入 > 引文
您可以通过更改框来更改引文的显示方式Citation style
。它将为您提供它在 PDF 中的预览。
答案2
参见以下示例:
\documentclass{article}
\usepackage[authoryear]{natbib}
\begin{document}
It is impossible to solve the problem exactly \citep{au1}, however,
recently an approximate solution has been suggested by \citet{au2}.
\begin{thebibliography}{1}
\bibitem[Author1(2009)]{au1}
Author1, {\it PLE} 3(6):19--64, 2009.
\bibitem[Author2(2010)]{au2}
Author2, {\it PLE}, 4(7):119--164, 2010.
\end{thebibliography}
\end{document}