Upgrading from 2021.03.05.20230120 -> 2023.05.05.20230730 breaks BibTeX footnotes
Hello list, I recently upgraded my distro release to Ubuntu Noble on one of my machines. The ConTeXt packages that were previously for 2021.03.05.20230120 were upgraded to 2023.05.05.20230730. Since the upgrade I've noticed my BibTeX footnotes that previously looked like this: https://imgur.com/vg7Xjd3.png Now look like this: https://imgur.com/I3hq6bM.png I haven't changed anything in the source of my document. This is how I typeset in my Environment.tex: % Select References.bib and name it the main database... \usebtxdataset[main][./References.bib] % Citation style... \usebtxdefinitions[apa] % Use our main dataset for citations... \setupbtx[dataset=main] \definebtxrendering[main][apa][dataset=main] % When listing all references use APS style... \definebtxrendering [list_all_references] [aps] [dataset=main, group=examples] \setupbtxrendering[main][ pagestate=start, continue=yes, numbering=yes] % Macro to put the citations as footnotes... \unexpanded\def\footnotecite{\dodoubleempty\domycite} \def\domycite[#1][#2]% {\ifsecondargument \footnote{\cite[alternative=entry,#1][main::#2]}% \else \footnote{\cite[alternative=entry][main::#1]}% \fi} Any help appreciated! -- Kip Warner OpenPGP signed/encrypted mail preferred https://www.thevertigo.com
On 6/17/2024 7:57 PM, Kip Warner wrote:
Hello list,
I recently upgraded my distro release to Ubuntu Noble on one of my machines. The ConTeXt packages that were previously for 2021.03.05.20230120 were upgraded to 2023.05.05.20230730.
Since the upgrade I've noticed my BibTeX footnotes that previously looked like this:
Now look like this:
I haven't changed anything in the source of my document. This is how I typeset in my Environment.tex:
% Select References.bib and name it the main database... \usebtxdataset[main][./References.bib]
% Citation style... \usebtxdefinitions[apa]
% Use our main dataset for citations... \setupbtx[dataset=main]
\definebtxrendering[main][apa][dataset=main]
% When listing all references use APS style... \definebtxrendering [list_all_references] [aps] [dataset=main, group=examples]
\setupbtxrendering[main][ pagestate=start, continue=yes, numbering=yes]
% Macro to put the citations as footnotes... \unexpanded\def\footnotecite{\dodoubleempty\domycite} \def\domycite[#1][#2]% {\ifsecondargument \footnote{\cite[alternative=entry,#1][main::#2]}% \else \footnote{\cite[alternative=entry][main::#1]}% \fi}
complete example needed - tex file - bib file Hans ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl -----------------------------------------------------------------
On Tue, 2024-06-18 at 00:54 +0200, Hans Hagen wrote:
complete example needed
- tex file - bib file
Hello Hans, While trying to prepare a minimal for you I noticed that now all of my footnotes disappear. Here is a minimal using the buffer method so there is only one file: \startbuffer[testdata] @Book{cicero-tuscu2011, author = {Cicéron, Marcus Tullius}, editor = {Fohlen, G.}, publisher = {Les Belles Lettres}, title = {Tusculanes}, year = {2011}, address = {Paris}, edition = {7e tirage}, isbn = {9782251010830}, series = {œuvres philosophiques}, volume = {1}, ppn_gvk = {1823774121}, translator = {Jules Humbert}, } \stopbuffer % Setup bibliography... % Select References.bib and name it the main database... \usebtxdataset[main][testdata.buffer] % Citation style... \usebtxdefinitions[apa] % Use our main dataset for citations... \setupbtx[dataset=main] \definebtxrendering[main][apa][dataset=main] \setupbtxrendering[main][ pagestate=start, continue=yes, numbering=yes] % Macro to put the citations as footnotes... \unexpanded\def\footnotecite{\dodoubleempty\domycite} \def\domycite[#1][#2]% {\ifsecondargument \footnote{\cite[alternative=entry,#1][main::#2]}% \else \footnote{\cite[alternative=entry][main::#1]}% \fi} \starttext Some footnote here.\footnotecite[cicero-tuscu2011] \stoptext -- Kip Warner OpenPGP signed/encrypted mail preferred https://www.thevertigo.com
participants (2)
-
Hans Hagen
-
Kip Warner