例如,我有这案例研究。我想在 BibTeX 中引用它,我该怎么做?我使用的是书目样式:\bibliographystyle{IEEEtran}
以数字方式调出引文。我没有使用任何引文管理包,例如、、cite
等。natbib
apacite
该案例研究的其他细节如下:
香港房屋委员会可持续发展报告2013/14;以创新设计及措施减低噪音个案研究2。 (日期:2015-01-28)
答案1
您没有提供太多有关参考书目设置的信息。因此,以下答案必然是相当简约的,因为它没有做出任何深远的假设(这些假设可能适用于您的文档,也可能不适用)。
\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@misc{hkha:2014,
author = "{Hong Kong Housing Authority}",
title = "{Sustainability Report 2013/14; Case} Study~2: {Noise}
Mitigation through Innovative Designs and Measures",
year = 2014,
note = "\url{https://www.housingauthority.gov.hk/mini-site/hasr1314/en/common/pdf/09.pdf}, last checked on 2018-01-23",
}
\end{filecontents}
\documentclass{article}
\usepackage[numbers]{natbib} % change 'numbers' to 'authoryear,round' if needed
\bibliographystyle{plainnat} % choose a suitable bibliography style
\usepackage[hyphens]{url}
\begin{document}
\cite{hkha:2014}
\bibliography{mybib}
\end{document}