如何引用学生报告(学期报告)?

如何引用学生报告(学期报告)?

有些学校要求本科生/本科生在学期末提交报告(例如项目报告)。比如说,我想使用bibtexbiblatex条目引用这样的报告。到目前为止,我发现唯一有用的是硕士或学期项目报告 (en:output:student_reports [Algo]),他们似乎使用了unpublished条目类型(示例这里)。

有没有比 更合适的条目类型unpublished,分别适用于bibtexbiblatex?我不会选择article或 ,inproceedings因为这意味着发布,也不会选择 和misc(我已经将它用于普通网页) - 但是,说,techreport合适,或者有更好的?请注意,我还想记录一个 URL(可能还有 URL 日期)和机构。

以下也是一个“伪”条目作为示例:

@????{cite-key,
  author = {John Dough and Jane Doe},
  title = {An example of some basic analysis},
  submissiondate = {2013/01/22},
  year = {2013}, % based on submissiondate
  urldate = {2014/04/10},
  url = {http://example.com/2013/example_semester_report_12.pdf},
  note = {3rd semester project report},
  institution = {Dept. of Something, University of South Nowhereton},
}

答案1

我认为论文类型是正确的。以下显示了两种可能性。顺便说一句,你的日期格式是错误的,但我已经纠正了:你需要用连字符而不是斜线来分隔日期。

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@thesis{thesis,
  author = {John Dough and Jane Doe},
  title = {An example of some basic analysis},
  submissiondate = {2013/01/22},
  date = {2013}, % based on submissiondate
  urldate = {2014-04-10},
  url = {http://example.com/2013/example_semester_report_12.pdf},
  type = {3rd semester project report},
  institution = {Dept. of Something, University of South Nowhereton},
}
@misc{misc,
  author = {John Dough and Jane Doe},
  title = {An example of some basic analysis},
  submissiondate = {2013/01/22},
  year = {2013}, % based on submissiondate
  urldate = {2014-04-10},
  url = {http://example.com/2013/example_semester_report_12.pdf},
  note = {3rd semester project report},
  institution = {Dept. of Something, University of South Nowhereton},
}
% note: `type` is "commented" below, to show that "Tech. rep." is inserted
% by default for techreport, even if `type` is not explicitly set.
% to overload, uncomment the type, and set needed value.
@techreport{techreport,
  //type = {Tech. rep.},
  author = {John Dough and Jane Doe},
  title = {An example of some basic analysis},
  submissiondate = {2013/01/22},
  year = {2013},
  urldate = {2014-04-10},
  url = {http://example.com/2013/example_semester_report_12.pdf},
  note = {3rd semester project report},
  institution = {Dept. of Something, University of South Nowhereton},
}
\end{filecontents}
\usepackage[style=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}

\nocite{*}

\printbibliography[type=thesis, title={Using Thesis Type}]

\printbibliography[type=misc, title={Using Misc Type}]

% note: for some reason bibtex will parse the above @techreport
% into just {report} in the .bbl; so use "report" here to select!
\printbibliography[type=report, title={Using Techreport Type}]

\end{document}

测试1.png

相关内容