Is there a latex editor that has plugin support?
I want to move to latex but I like the auto-citation that's available in word/libre office. Is there any editor that zotero supports with a plugin?
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.
If you use the better biblatex plugin in zotero (https://retorque.re/zotero-better-bibtex/), you can auto export your library to a bib-file. Many latex-editors are able to auto-complete citation-keys from your bib-file and show you some information from the citation.
I use texstudio and when I write a citation, \autocite{, it pops up a list of citation keys with the text from the bib-file like this: https://www.dropbox.com/s/5jqvapg9vul1jys/Screenshot 2018-04-03 10.07.20.png?dl=0
Texstudio is also customizable through macros, and I've made my own citation macro which I have bound to ctrl + <. When I press this key-combination I get the text \autocite{} or \textcite{} and it shows my citation keys like above.
To make the macro you have to choose "script" and the macro is:
%SCRIPT
editor.write("\\autocite{}");
cursor.shift(-1);
app.normalCompletion()
https://www.zotero.org/support/plugins#latex_tex_and_plain_text_editors
Overleaf has very elegant Zotero integration, too.
Drag&drop resulting in [?] shouldn't ever happen, though, so that's either a user error, a bug in BBT, or a significant problem with Texstudio's clipboard implementation.
\bibliography{honoursbib}
\begin{document}
Test\cite{Fukuyama1989}
\end{document}
@article{Fukuyama1989,
title = {The {{End}} of {{History}}?},
issn = {0884-9382},
url = {http://www.jstor.org.ezproxy.lib.monash.edu.au/stable/24027184},
number = {16},
journaltitle = {The National Interest},
shortjournal = {Natl. Interest},
urldate = {2018-04-05},
date = {1989},
pages = {3--18},
author = {Fukuyama, Francis},
file = {/home/paddy/Zotero/storage/XXWNZEEF/Fukuyama - 1989 - The End of History.pdf}
}
\usepackage{biblatex}
or\printbibliography