I have the following example:
\usepackage[
backend=bibtex,
style=ieee,
bibencoding=ascii
backref=true
hyperref=true
% style=alphabetic
% style=reading
]{biblatex}
\addbibresource{bibilography.bib}
\begin{document}
\cite{carl_venture}
\printbibliography
\end{document}
In the bibilography.bib:
@book{carl_venture,
keywords = {call},
author = "Carl Venture",
title = "The adventures of Carl Venture.",
publisher = "C.V.",
%volume = "",
%number = "",
%series = "",
%address = "",
edition = "3",
year = "1999",
%month = "",
%note = "",
I get this:
[#] Carl Venture, The adventures of Carl Venture. C.V.
It is missing the year and edition. How can I enable this fields in the bibliography without changing the IEEE styles?
documentclassand removing the commented fields in your bib entry, it worked, including year and edition. See, e.g., https://tex.stackexchange.com/q/21709/105447 and https://tex.stackexchange.com/q/261261/105447. – gusbrs Jul 26 '17 at 00:54