如何在 Bibtex 中引用電子郵件地址?

如何在 Bibtex 中引用電子郵件地址?

可能的重複:
透過電子郵件引用具有被引用者功能的個人信件?

你們如何在圖書館部分引用作者的電子郵件地址?您使用什麼bst樣式和包?bib如何對庫條目進行編碼?

這就是我的德國大學想要的樣子(遵循規則“DIN1505”)。

Morgner, U. <[email protected]> ; Steinmeyer, G. ; Mitschke,
F.: Systematic evaluation and prediction of the pulse width of
synchronously pumped lasers. URL:
<http://link.springer.de/link/service/journals/00340/bibs/8066002/80660145.htm>,
verfügbar am 1.3.1998

這是一個網絡鏈接,我還有一本書,我想在其中引用作者的電子郵件。根據這個模板,有一個email字段,但 Bibtex 不使用該字段。

順便說一句,我使用該natbib軟體包並alphadin.bst支援 DIN1505。

答案1

我的建議可能不會給出您想要的結果,但請嘗試以下操作:

@article{MSM98,
 author = "Morgner, U. and Steinmeyer, G. and Mitschke, F.",
 title = "Systematic evaluation and prediction of the pulse width of
          synchronously pumped lasers",
 year = "1998",
 note = "{\tt [email protected]}"
}

否則,嘗試

@article{MSM98,
 author = "Morgner, U. {\tt [email protected]} and Steinmeyer, G. and Mitschke, F.",
 title = "Systematic evaluation and prediction of the pulse width of
          synchronously pumped lasers",
 year = "1998"
}

乾杯

相關內容