I have generated BibTeX file from a webpage by Zotero. The format I got is:
@misc{<>,
title = {<>},
shorttitle = {<>},
url = {<>},
abstract = {<>},
language = {<>},
urldate = {<>},
journal = {<>},
author = {<>, <>},
month = <>,
year = {<>}
}
I saved this file as ref.bib and used it in my TeX file which looks like:
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage[nottoc]{tocbibind}
\author{<>}
\title{<>}
\begin{document}
\tableofcontents
\section{<>}
This document ...
This discovery\cite{<>} was extraordinary.
\bibliographystyle{ieeetr}
\bibliography{ref}
\end{document}
After compiling with PDFLaTeX & BibTeX, only the author, title, month, year have appeared. How to show all of them, especially the url and urldate of the source? Which style should I use to solve this issue?
TIA
N.B.: I am new in LaTeX. I'm using MikTeX and Texmaker in Windows system.
ieeetrbibliography style has been around, more or less unchanged, since the early 1980s. Given that URLs were pretty much unheard of back then, it's not all that surprising that theieeetrbibliography style doesn't do anything with fields calledurlandurldate. Please tell us if you're free to choose a suitable bibliography style or, alternatively, you must use a specific bibliography style. Incidentallly, if Zotero outputs ajournalfield for entries of type@misc, then something is very wrong with Zotero. – Mico Oct 18 '18 at 22:46@misc! – raf Oct 19 '18 at 01:24apacitepackage (with the optionnatbibapain case you like the\citetand\citepcitation call-out commands) and theapacitebibliography style. Do be aware that this bibliography style generates authoryear-style citation call-outs, not numeric-style citation call-outs. (Aside: If a bibliographic entry is a blog post and hence if the entry type@miscis used, the fieldjournalshouldn't be used under any circumstance. Thejournalfield should be used only for the name of an academic-style journal.) – Mico Oct 19 '18 at 07:14urlandurldate. Maybe somebody else does. – Mico Oct 20 '18 at 11:16