+1 vote
in General IT Tips by (77.2k points)

I am using 'biblatex' package with 'style=ieee' to print PhD thesis, but it does not print anything.

Here is the Latex code I am using:

\usepackage[style=ieee,url=false,doi=false,dashed=false]{biblatex}

\printbibliography[heading={subbibliography},title={PhD Dissertation},type=phdthesis]

and the following code is in '.bib' file:

@phdthesis{myphdthesis,

  author  = "Kat Lat Tat",

  title   = "Alpha Beta Gamma",

  school  = "The University of Aliens",

  address = "Mars",

  year    = 2022,

  month   = Dec

}

It does not give any error or warning message. How can I get PhD thesis displayed in the pdf file?

1 Answer

+2 votes
by (60.0k points)
selected by
 
Best answer

You need to use "type=thesis" instead of "type=phdthesis" in \printbibliography and it should then work.

Here is the modified version of \printbibliography:

\printbibliography[heading={subbibliography},title={PhD Dissertation},type=thesis]


...