如何引用未发表的论文?

如何引用未发表的论文?

如何引用未发表的论文(我还没有通过博士考试;所以我的论文还没有发表)?

在 BibTex 中,我尝试过:

@phdthesis{r2014,
    author = {... ...},
    title = {...},
    school = {...},
    year = {2014}
        %note = {unpublished thesis}
}

然而,最后一条条目只是一个“注释”,并且“未发表”并没有出现在引用输出中。

另一方面,如果我使用@unpublished而不是@phdthesis,输出不会显示任何关于这项工作是博士论文的信息。有什么想法吗?

答案1

我想说这取决于你的书目风格和个人品味。

使用biblatex默认样式,您可以得到(下面的代码): 包含 4 个不同条目的汇编

另一方面,如果我使用@unpublished 而不是@phdthesis,输出将不会显示任何有关这项工作是博士论文的信息。有什么想法吗?

还有其他内容:学校没有打印,所以您必须进行调整以添加它(作为注释或其他内容)。

就我个人而言,我肯定会@phdthesis选择

  • 这就是这份文件的内容,
  • 更新您的bib文件将变得更容易,因为您只需对其进行评论即可unpublished
  • 体现了这篇文献是“学者”的。


代码 :

\documentclass{article}
\usepackage[backend=bibtex]{biblatex}
\RequirePackage{filecontents}
\begin{filecontents*}{bib.bib}
@phdthesis{mephd2014,
author={Myself, Roberto},
title={A great memoir},
school={UCXDX},
year={2014},
note={unpublished thesis}
}
@phdthesis{mepdh2014bis,
author={Myself, Roberto},
title={A great memoir},
school={UCXDX},
year={2014},
addendum={unpublished thesis}
}
@unpublished{meunpub2014,
author={Myself, Roberto},
title={A great memoir},
school={UCXDX},
year={2014},
note={unpublished thesis}
}
@unpublished{meunpub2014bis,
author={Myself, Roberto},
title={A great memoir},
school={UCXDX},
year={2014},
addendum={unpublished thesis}
}
\end{filecontents*}
\addbibresource{bib.bib}
\begin{document}
\noindent
\verb|@phdthesis| with note: \cite{mephd2014}\\
\verb|@phdthesis| with addendum: \cite{mepdh2014bis}\\
\verb|@unpublished| with note: \cite{meunpub2014}\\
\verb|@unpublished| with addendum: \cite{meunpub2014bis}
\printbibliography
\end{document}

相关内容