Zotero Citation Picker for Windows (should work with Word, Scrivener, Google doc etc.)
I made a simple windows Zotero citation picker with AutoHotkey.
It connects to the Better BibTex and ODT scan add-ons.
It's compiled into an exe and can be used as a standalone application. You can check the AHK source below and compile it yourself using AHK compilers.
Still beta-testing. Let me know if you encounter any errors.
Download and instructions:
https://github.com/boan-anbo/Zotero-Citation-Picker-for-Windows
It connects to the Better BibTex and ODT scan add-ons.
It's compiled into an exe and can be used as a standalone application. You can check the AHK source below and compile it yourself using AHK compilers.
Still beta-testing. Let me know if you encounter any errors.
Download and instructions:
https://github.com/boan-anbo/Zotero-Citation-Picker-for-Windows
My only comment is I'm not sure the option to enter pages is actually necessary - the picker will enter pages if you type ":pagenumber" after the citation. Obviously you can turn this option off, so it doesn't really matter, but it feels a bit redundant.
Indeed, I created a macro script for the TeXstudio editor (LaTeX IDE), the code of which being:
%SCRIPT
var url = 'http://127.0.0.1:23119/better-bibtex/cayw??format=biblatex&command=autocite&texstudio=true&minimize=true';
system('curl -s ' + url);
It works pretty well on Linux but not so well on Windows, the Zotero Citation Picker being desperately not brought to front: it is at the bottom of the stacked windows (so can be reached with Alt+Shift+Tab shortcut but that's much less handy than if it would be brought to front).
Thanks!