I am using LaTeX and bibtex for my curriculum, having cite commands for each one of my publications. But, instead of having the bibliographic entries at the end, I want that they get expanded exactly where they are cited.
For that, I was using a Perl scripts, mangling the .bbl file into a .tex file, and then replacing each citation by the .bbl LaTeX code. But this is not just messy, but also difficult to adapt (I just changed the citation type, and now I need to adapt all the code, as the .bbl file is generated differently -- I want to use apacite, now.).
Is there any module allowing me to do this without using an external tool?
bibentrypackage (see for example https://tex.stackexchange.com/q/142985/35864).biblatexhas the\fullcitecommand for those sort of things. – moewe May 15 '20 at 14:37bibentrydoes not work with apacite, it seems. – Alberto May 15 '20 at 14:45bibentryis part of thenatbibfamily, so maybe it needs a morenatbib-ish.bblfile. Maybe it works if you haveapaciteloadnatbibwith thenatbibapaoption. – moewe May 15 '20 at 14:48apaciteandbibentry. – moewe May 15 '20 at 15:18natbibapa... – moewe May 15 '20 at 15:20bibentryandhyperrefneed to manipulate\bibentryquite a bit, so clashes like that are not completely surprising. Things would be a lot easier withbiblatexand its\fullcite.biblatex-apa6implements 6th edition APA style (which is whatapacitedoes as well) and current versions ofbiblatex-apagive you 7th edition APA style. – moewe May 15 '20 at 15:31