Latex issues
Dear all,
I have issues with Zotero and Latex. It worked fine until one month ago or so. I updated the bibliography file from Zotero, but now the format is distorted, none of the dates from Zotero are recognized and somehow Latex now shows the doi as well as the retrieve date from Zotero, which it never did before. I have been searching on the Latex side but I wondered if it could not come from the export.
Thank you in advance,
I have issues with Zotero and Latex. It worked fine until one month ago or so. I updated the bibliography file from Zotero, but now the format is distorted, none of the dates from Zotero are recognized and somehow Latex now shows the doi as well as the retrieve date from Zotero, which it never did before. I have been searching on the Latex side but I wondered if it could not come from the export.
Thank you in advance,
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
@article{dinc_bank_2000,
title = {Bank Reputation, Bank Commitment, and the Effects of Competition in Credit Markets},
volume = {13},
issn = {0893-9454, 1465-7368},
url = {https://academic.oup.com/rfs/article-lookup/doi/10.1093/rfs/13.3.781},
doi = {10.1093/rfs/13.3.781},
pages = {781--812},
number = {3},
journaltitle = {Review of Financial Studies},
author = {Dinç, I. Serdar},
urldate = {2018-10-03},
date = {2000-07},
langid = {english},
file = {Dinç - 2000 - Bank Reputation, Bank Commitment, and the Effects .pdf:C\:\\Users\..../pdf}
Have you tried throwing away the temporary files that the compilation produces?
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{dinc_bank_2000,
title = {Bank Reputation, Bank Commitment, and the Effects of Competition in Credit Markets},
volume = {13},
issn = {0893-9454, 1465-7368},
url = {https://academic.oup.com/rfs/article-lookup/doi/10.1093/rfs/13.3.781},
doi = {10.1093/rfs/13.3.781},
pages = {781--812},
number = {3},
journaltitle = {Review of Financial Studies},
author = {Dinç, I. Serdar},
urldate = {2018-10-03},
date = {2000-07},
langid = {english},
file = {Dinç - 2000 - Bank Reputation, Bank Commitment, and the Effects .pdf:C\:\\Users\..../pdf}
}
\end{filecontents*}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{\jobname}
\end{document}
I can't think of a reason why that should have helped, but if it works, it works.