Institute Name in @masterthesis Citations
- Use
@mastersthesis
(with ans
aftermaster
) instead of@masterthesis
(which doesn’t exist and probably defaults to some other type), thenschool
will appear. The entry type
@unpublished
doesn’t supportschool
, so I’d suggest usingnote
instead, as is recommended in thebiblatex
documentation:Use the fields
howpublished
andnote
to supply additional information in free format, if applicable.You could also use the field
addendum
, which would appear at the very end.It would probably be more proper and clean to redefine the output of
@unpublished
to includeschool
/institution
, but as a one-off solution, this should be fine.
Here’s the output:
As a side note: The official field names in biblatex
are institution
, not school
; and location
, not address
, but the latter ones do work as aliases.
Quick and dirty, using bibtex
together with natbib
:
\begin{filecontents}{toto1.bib}
@PHDTHESIS{bhgt,
title = "Bike Model",
author = "Fris",
year = "2016",
type = "Master's Thesis",
school = "University A",
address = "XXX",
}
@UNPUBLISHED{Map,
title = "Electrical Engineering",
author = "Koch",
note = "Lecture Notes, University B",
year = "2015",
}
\end{filecontents}
\documentclass[a4paper,12pt]{article}
\usepackage{natbib}
\begin{document}
\citet{Map}
\citet{bhgt}
\bibliographystyle{plainnat}
\bibliography{toto1}
\end{document}
gives