Can't access saved within entrydata*











up vote
1
down vote

favorite
1












Trying to loop over child entries within a modified set driver in biblatex I get a behaviour of entrydata* I do not understand.



When calling



  renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%


within the driver I get



xset Warning: inside loop for A:V1
xset Warning: entrydata check loop run for entrykey=A:V1 with savedentrykey=
xset Warning: inside loop for A:V2
xset Warning: entrydata check loop run for entrykey=A:V2 with savedentrykey=


where savedentrykey should - as far as I understand it - be A and not empty.



Even



  entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%


does not work (which probably should???)...



Any idea what I am missing?



MWE:



documentclass{article}
usepackage[ansinew]{inputenc}
usepackage[ngerman]{babel}
usepackage[babel,german=quotes]{csquotes}
usepackage[doi=false,defernumbers=true,backend=biber,subentry,sorting=nyt,sortsets=true,style=numeric-comp]{biblatex}
usepackage{xpatch}

newlinechar=`^^J

makeatletter
begin{filecontents}{jobname.bib}
@Set{A,
entryset = {A:V1,A:V2,A:V3},
}
@Book{A:V1,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix der Gallier},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 01},
year = {1959}, isbn = {1234567890123},
publisher = {Dargaud}, location = {Paris},
volume = {1},
}
@Book{A:V2,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix und Kleopatra},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 02},
year = {1968}, isbn = {2345678901234},
publisher = {Dargaud}, location = {Paris},
volume = {2},
}
@Book{A:V3,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix als Gladiator},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 03},
year = {1969}, isbn = {3456789012345},
publisher = {Dargaud}, location = {Paris},
volume = {3},
}
end{filecontents}

DeclareBibliographyDriver{set}{%
message{^^Jxset Warning: entering set driver^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}^^J}%
renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%
entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%
newunitnewblock
usebibmacro{setpageref}%
finentry}
makeatother

addbibresource{jobname.bib}

begin{document}
nocite{*}
printbibliography
end{document}


Question Biblatex - How to access the “saveddate” using “entrydata*”? might be related...










share|improve this question
























  • It's late where I am and I might have missed something obvious but I get entrydata check loop run for entrykey=A:V1 with savedentrykey=A etc. from the entrydata* as I expected. From the entryset I get empty savedentrykeys but that was sort of expected since entryset does not save the parent data (remember that usually @set is just a vessel for its children, it does not have meaningful data of its own). I should mention I tested with biblatex 3.12/Biber 2.12 and an also otherwise up to date system. What versions do you run?
    – moewe
    1 hour ago












  • @moewe 3.8a/2.8 - I'll check that...
    – AndiW
    1 hour ago










  • The question you link sparked quite some changes in biblatex 3.11 (github.com/plk/biblatex/pull/684, github.com/plk/biblatex/issues/690, github.com/plk/biblatex/pull/720), so it might well be that you discovered a bug with entrydata* that was fixed already
    – moewe
    1 hour ago










  • Ah yes, see my comment: tex.stackexchange.com/questions/410977/…
    – moewe
    1 hour ago










  • @moewe If I recall correctly, most of the discussion then had to do with dates. But here, the OP is only trying to get the entrykey.
    – gusbrs
    1 hour ago















up vote
1
down vote

favorite
1












Trying to loop over child entries within a modified set driver in biblatex I get a behaviour of entrydata* I do not understand.



When calling



  renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%


within the driver I get



xset Warning: inside loop for A:V1
xset Warning: entrydata check loop run for entrykey=A:V1 with savedentrykey=
xset Warning: inside loop for A:V2
xset Warning: entrydata check loop run for entrykey=A:V2 with savedentrykey=


where savedentrykey should - as far as I understand it - be A and not empty.



Even



  entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%


does not work (which probably should???)...



Any idea what I am missing?



MWE:



documentclass{article}
usepackage[ansinew]{inputenc}
usepackage[ngerman]{babel}
usepackage[babel,german=quotes]{csquotes}
usepackage[doi=false,defernumbers=true,backend=biber,subentry,sorting=nyt,sortsets=true,style=numeric-comp]{biblatex}
usepackage{xpatch}

newlinechar=`^^J

makeatletter
begin{filecontents}{jobname.bib}
@Set{A,
entryset = {A:V1,A:V2,A:V3},
}
@Book{A:V1,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix der Gallier},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 01},
year = {1959}, isbn = {1234567890123},
publisher = {Dargaud}, location = {Paris},
volume = {1},
}
@Book{A:V2,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix und Kleopatra},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 02},
year = {1968}, isbn = {2345678901234},
publisher = {Dargaud}, location = {Paris},
volume = {2},
}
@Book{A:V3,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix als Gladiator},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 03},
year = {1969}, isbn = {3456789012345},
publisher = {Dargaud}, location = {Paris},
volume = {3},
}
end{filecontents}

DeclareBibliographyDriver{set}{%
message{^^Jxset Warning: entering set driver^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}^^J}%
renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%
entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%
newunitnewblock
usebibmacro{setpageref}%
finentry}
makeatother

addbibresource{jobname.bib}

begin{document}
nocite{*}
printbibliography
end{document}


Question Biblatex - How to access the “saveddate” using “entrydata*”? might be related...










share|improve this question
























  • It's late where I am and I might have missed something obvious but I get entrydata check loop run for entrykey=A:V1 with savedentrykey=A etc. from the entrydata* as I expected. From the entryset I get empty savedentrykeys but that was sort of expected since entryset does not save the parent data (remember that usually @set is just a vessel for its children, it does not have meaningful data of its own). I should mention I tested with biblatex 3.12/Biber 2.12 and an also otherwise up to date system. What versions do you run?
    – moewe
    1 hour ago












  • @moewe 3.8a/2.8 - I'll check that...
    – AndiW
    1 hour ago










  • The question you link sparked quite some changes in biblatex 3.11 (github.com/plk/biblatex/pull/684, github.com/plk/biblatex/issues/690, github.com/plk/biblatex/pull/720), so it might well be that you discovered a bug with entrydata* that was fixed already
    – moewe
    1 hour ago










  • Ah yes, see my comment: tex.stackexchange.com/questions/410977/…
    – moewe
    1 hour ago










  • @moewe If I recall correctly, most of the discussion then had to do with dates. But here, the OP is only trying to get the entrykey.
    – gusbrs
    1 hour ago













up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





Trying to loop over child entries within a modified set driver in biblatex I get a behaviour of entrydata* I do not understand.



When calling



  renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%


within the driver I get



xset Warning: inside loop for A:V1
xset Warning: entrydata check loop run for entrykey=A:V1 with savedentrykey=
xset Warning: inside loop for A:V2
xset Warning: entrydata check loop run for entrykey=A:V2 with savedentrykey=


where savedentrykey should - as far as I understand it - be A and not empty.



Even



  entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%


does not work (which probably should???)...



Any idea what I am missing?



MWE:



documentclass{article}
usepackage[ansinew]{inputenc}
usepackage[ngerman]{babel}
usepackage[babel,german=quotes]{csquotes}
usepackage[doi=false,defernumbers=true,backend=biber,subentry,sorting=nyt,sortsets=true,style=numeric-comp]{biblatex}
usepackage{xpatch}

newlinechar=`^^J

makeatletter
begin{filecontents}{jobname.bib}
@Set{A,
entryset = {A:V1,A:V2,A:V3},
}
@Book{A:V1,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix der Gallier},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 01},
year = {1959}, isbn = {1234567890123},
publisher = {Dargaud}, location = {Paris},
volume = {1},
}
@Book{A:V2,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix und Kleopatra},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 02},
year = {1968}, isbn = {2345678901234},
publisher = {Dargaud}, location = {Paris},
volume = {2},
}
@Book{A:V3,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix als Gladiator},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 03},
year = {1969}, isbn = {3456789012345},
publisher = {Dargaud}, location = {Paris},
volume = {3},
}
end{filecontents}

DeclareBibliographyDriver{set}{%
message{^^Jxset Warning: entering set driver^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}^^J}%
renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%
entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%
newunitnewblock
usebibmacro{setpageref}%
finentry}
makeatother

addbibresource{jobname.bib}

begin{document}
nocite{*}
printbibliography
end{document}


Question Biblatex - How to access the “saveddate” using “entrydata*”? might be related...










share|improve this question















Trying to loop over child entries within a modified set driver in biblatex I get a behaviour of entrydata* I do not understand.



When calling



  renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%


within the driver I get



xset Warning: inside loop for A:V1
xset Warning: entrydata check loop run for entrykey=A:V1 with savedentrykey=
xset Warning: inside loop for A:V2
xset Warning: entrydata check loop run for entrykey=A:V2 with savedentrykey=


where savedentrykey should - as far as I understand it - be A and not empty.



Even



  entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%


does not work (which probably should???)...



Any idea what I am missing?



MWE:



documentclass{article}
usepackage[ansinew]{inputenc}
usepackage[ngerman]{babel}
usepackage[babel,german=quotes]{csquotes}
usepackage[doi=false,defernumbers=true,backend=biber,subentry,sorting=nyt,sortsets=true,style=numeric-comp]{biblatex}
usepackage{xpatch}

newlinechar=`^^J

makeatletter
begin{filecontents}{jobname.bib}
@Set{A,
entryset = {A:V1,A:V2,A:V3},
}
@Book{A:V1,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix der Gallier},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 01},
year = {1959}, isbn = {1234567890123},
publisher = {Dargaud}, location = {Paris},
volume = {1},
}
@Book{A:V2,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix und Kleopatra},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 02},
year = {1968}, isbn = {2345678901234},
publisher = {Dargaud}, location = {Paris},
volume = {2},
}
@Book{A:V3,
author = {Rene Goscinny and Albert Uderzo}, title = {Asterix als Gladiator},
maintitle = {Asterix und Obelix}, sorttitle = {Asterix und Obelix 03},
year = {1969}, isbn = {3456789012345},
publisher = {Dargaud}, location = {Paris},
volume = {3},
}
end{filecontents}

DeclareBibliographyDriver{set}{%
message{^^Jxset Warning: entering set driver^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}^^J}%
renewcommand{do}[1]{%
message{^^Jxset Warning: inside loop for ##1^^J}%
entrydata*{##1}{message{^^Jxset Warning: entrydata check loop run for entrykey=thefield{entrykey} with savedentrykey=thefield{savedentrykey}^^J}}}%
edefxset@tempa{thefield{entryset}}expandafterdocsvlistexpandafter{xset@tempa}%
entryset{message{^^Jxset Warning: entryset pre code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}
{message{^^Jxset Warning: entryset post code executed^^Jentrykey=thefield{entrykey} savedentrykey=thefield{savedentrykey}}}%
newunitnewblock
usebibmacro{setpageref}%
finentry}
makeatother

addbibresource{jobname.bib}

begin{document}
nocite{*}
printbibliography
end{document}


Question Biblatex - How to access the “saveddate” using “entrydata*”? might be related...







biblatex






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 1 hour ago

























asked 2 hours ago









AndiW

1338




1338












  • It's late where I am and I might have missed something obvious but I get entrydata check loop run for entrykey=A:V1 with savedentrykey=A etc. from the entrydata* as I expected. From the entryset I get empty savedentrykeys but that was sort of expected since entryset does not save the parent data (remember that usually @set is just a vessel for its children, it does not have meaningful data of its own). I should mention I tested with biblatex 3.12/Biber 2.12 and an also otherwise up to date system. What versions do you run?
    – moewe
    1 hour ago












  • @moewe 3.8a/2.8 - I'll check that...
    – AndiW
    1 hour ago










  • The question you link sparked quite some changes in biblatex 3.11 (github.com/plk/biblatex/pull/684, github.com/plk/biblatex/issues/690, github.com/plk/biblatex/pull/720), so it might well be that you discovered a bug with entrydata* that was fixed already
    – moewe
    1 hour ago










  • Ah yes, see my comment: tex.stackexchange.com/questions/410977/…
    – moewe
    1 hour ago










  • @moewe If I recall correctly, most of the discussion then had to do with dates. But here, the OP is only trying to get the entrykey.
    – gusbrs
    1 hour ago


















  • It's late where I am and I might have missed something obvious but I get entrydata check loop run for entrykey=A:V1 with savedentrykey=A etc. from the entrydata* as I expected. From the entryset I get empty savedentrykeys but that was sort of expected since entryset does not save the parent data (remember that usually @set is just a vessel for its children, it does not have meaningful data of its own). I should mention I tested with biblatex 3.12/Biber 2.12 and an also otherwise up to date system. What versions do you run?
    – moewe
    1 hour ago












  • @moewe 3.8a/2.8 - I'll check that...
    – AndiW
    1 hour ago










  • The question you link sparked quite some changes in biblatex 3.11 (github.com/plk/biblatex/pull/684, github.com/plk/biblatex/issues/690, github.com/plk/biblatex/pull/720), so it might well be that you discovered a bug with entrydata* that was fixed already
    – moewe
    1 hour ago










  • Ah yes, see my comment: tex.stackexchange.com/questions/410977/…
    – moewe
    1 hour ago










  • @moewe If I recall correctly, most of the discussion then had to do with dates. But here, the OP is only trying to get the entrykey.
    – gusbrs
    1 hour ago
















It's late where I am and I might have missed something obvious but I get entrydata check loop run for entrykey=A:V1 with savedentrykey=A etc. from the entrydata* as I expected. From the entryset I get empty savedentrykeys but that was sort of expected since entryset does not save the parent data (remember that usually @set is just a vessel for its children, it does not have meaningful data of its own). I should mention I tested with biblatex 3.12/Biber 2.12 and an also otherwise up to date system. What versions do you run?
– moewe
1 hour ago






It's late where I am and I might have missed something obvious but I get entrydata check loop run for entrykey=A:V1 with savedentrykey=A etc. from the entrydata* as I expected. From the entryset I get empty savedentrykeys but that was sort of expected since entryset does not save the parent data (remember that usually @set is just a vessel for its children, it does not have meaningful data of its own). I should mention I tested with biblatex 3.12/Biber 2.12 and an also otherwise up to date system. What versions do you run?
– moewe
1 hour ago














@moewe 3.8a/2.8 - I'll check that...
– AndiW
1 hour ago




@moewe 3.8a/2.8 - I'll check that...
– AndiW
1 hour ago












The question you link sparked quite some changes in biblatex 3.11 (github.com/plk/biblatex/pull/684, github.com/plk/biblatex/issues/690, github.com/plk/biblatex/pull/720), so it might well be that you discovered a bug with entrydata* that was fixed already
– moewe
1 hour ago




The question you link sparked quite some changes in biblatex 3.11 (github.com/plk/biblatex/pull/684, github.com/plk/biblatex/issues/690, github.com/plk/biblatex/pull/720), so it might well be that you discovered a bug with entrydata* that was fixed already
– moewe
1 hour ago












Ah yes, see my comment: tex.stackexchange.com/questions/410977/…
– moewe
1 hour ago




Ah yes, see my comment: tex.stackexchange.com/questions/410977/…
– moewe
1 hour ago












@moewe If I recall correctly, most of the discussion then had to do with dates. But here, the OP is only trying to get the entrykey.
– gusbrs
1 hour ago




@moewe If I recall correctly, most of the discussion then had to do with dates. But here, the OP is only trying to get the entrykey.
– gusbrs
1 hour ago















active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461907%2fcant-access-savedkey-within-entrydata%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461907%2fcant-access-savedkey-within-entrydata%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks