How to make edcite skip straight to the short form when biblatex-chicago short option is selected
Some time ago, David Purton (@DavidPurton) kindly devised a set of commands --- edcite{}
, edvolcite{}{}
, transcite{}
, etc. --- for referencing just the editor or translator and publication information of an edition of an ancient or medieval primary text.
My question today involves the same MWE as before: is there a simple way to get edcite{}
and its siblings to conform to the short
option in the command usepackage[notes, short]{biblatex-chicago}
?
In my original question, I had asked for a command that would print the editor's full name and the book's publication information (address
: publisher
, date
) the first time an edition was referenced and then a short version (just editor's name) on subsequent citations.
What I would like it to do when the short
option is activated is to use the short version (just editor's name) already the first time the edition is cited.
citing biblatex-chicago
add a comment |
Some time ago, David Purton (@DavidPurton) kindly devised a set of commands --- edcite{}
, edvolcite{}{}
, transcite{}
, etc. --- for referencing just the editor or translator and publication information of an edition of an ancient or medieval primary text.
My question today involves the same MWE as before: is there a simple way to get edcite{}
and its siblings to conform to the short
option in the command usepackage[notes, short]{biblatex-chicago}
?
In my original question, I had asked for a command that would print the editor's full name and the book's publication information (address
: publisher
, date
) the first time an edition was referenced and then a short version (just editor's name) on subsequent citations.
What I would like it to do when the short
option is activated is to use the short version (just editor's name) already the first time the edition is cited.
citing biblatex-chicago
Should the first citation be the editor's full name or just family name?
– David Purton
4 hours ago
Just family name.
– Alex Roberts
28 mins ago
add a comment |
Some time ago, David Purton (@DavidPurton) kindly devised a set of commands --- edcite{}
, edvolcite{}{}
, transcite{}
, etc. --- for referencing just the editor or translator and publication information of an edition of an ancient or medieval primary text.
My question today involves the same MWE as before: is there a simple way to get edcite{}
and its siblings to conform to the short
option in the command usepackage[notes, short]{biblatex-chicago}
?
In my original question, I had asked for a command that would print the editor's full name and the book's publication information (address
: publisher
, date
) the first time an edition was referenced and then a short version (just editor's name) on subsequent citations.
What I would like it to do when the short
option is activated is to use the short version (just editor's name) already the first time the edition is cited.
citing biblatex-chicago
Some time ago, David Purton (@DavidPurton) kindly devised a set of commands --- edcite{}
, edvolcite{}{}
, transcite{}
, etc. --- for referencing just the editor or translator and publication information of an edition of an ancient or medieval primary text.
My question today involves the same MWE as before: is there a simple way to get edcite{}
and its siblings to conform to the short
option in the command usepackage[notes, short]{biblatex-chicago}
?
In my original question, I had asked for a command that would print the editor's full name and the book's publication information (address
: publisher
, date
) the first time an edition was referenced and then a short version (just editor's name) on subsequent citations.
What I would like it to do when the short
option is activated is to use the short version (just editor's name) already the first time the edition is cited.
citing biblatex-chicago
citing biblatex-chicago
asked 4 hours ago
Alex RobertsAlex Roberts
501211
501211
Should the first citation be the editor's full name or just family name?
– David Purton
4 hours ago
Just family name.
– Alex Roberts
28 mins ago
add a comment |
Should the first citation be the editor's full name or just family name?
– David Purton
4 hours ago
Just family name.
– Alex Roberts
28 mins ago
Should the first citation be the editor's full name or just family name?
– David Purton
4 hours ago
Should the first citation be the editor's full name or just family name?
– David Purton
4 hours ago
Just family name.
– Alex Roberts
28 mins ago
Just family name.
– Alex Roberts
28 mins ago
add a comment |
1 Answer
1
active
oldest
votes
To skip straight to the short form, you can test if either the citation has already been seen or the toggle cms@allshort
(which is set by the short
package option) is set to true.
Change the edcite
macro to:
newbibmacro*{edcite}{%
ifboolexpr{
test {ifciteibid}
and
not test {iffirstonpage}
}
{usebibmacro{cite:ibid}}
{ifboolexpr{
test {ifciteseen}
or
togl {cms@allshort}
}
{printnames[labelname]{editor}}
{printnames[given-family]{editor}%
newcunit
usebibmacro{cpubl+loc+year}}}}
Wonderful, thank you! It's great to have this keyed to theshort
option.
– Alex Roberts
4 mins ago
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f473256%2fhow-to-make-edcite-skip-straight-to-the-short-form-when-biblatex-chicago-short%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To skip straight to the short form, you can test if either the citation has already been seen or the toggle cms@allshort
(which is set by the short
package option) is set to true.
Change the edcite
macro to:
newbibmacro*{edcite}{%
ifboolexpr{
test {ifciteibid}
and
not test {iffirstonpage}
}
{usebibmacro{cite:ibid}}
{ifboolexpr{
test {ifciteseen}
or
togl {cms@allshort}
}
{printnames[labelname]{editor}}
{printnames[given-family]{editor}%
newcunit
usebibmacro{cpubl+loc+year}}}}
Wonderful, thank you! It's great to have this keyed to theshort
option.
– Alex Roberts
4 mins ago
add a comment |
To skip straight to the short form, you can test if either the citation has already been seen or the toggle cms@allshort
(which is set by the short
package option) is set to true.
Change the edcite
macro to:
newbibmacro*{edcite}{%
ifboolexpr{
test {ifciteibid}
and
not test {iffirstonpage}
}
{usebibmacro{cite:ibid}}
{ifboolexpr{
test {ifciteseen}
or
togl {cms@allshort}
}
{printnames[labelname]{editor}}
{printnames[given-family]{editor}%
newcunit
usebibmacro{cpubl+loc+year}}}}
Wonderful, thank you! It's great to have this keyed to theshort
option.
– Alex Roberts
4 mins ago
add a comment |
To skip straight to the short form, you can test if either the citation has already been seen or the toggle cms@allshort
(which is set by the short
package option) is set to true.
Change the edcite
macro to:
newbibmacro*{edcite}{%
ifboolexpr{
test {ifciteibid}
and
not test {iffirstonpage}
}
{usebibmacro{cite:ibid}}
{ifboolexpr{
test {ifciteseen}
or
togl {cms@allshort}
}
{printnames[labelname]{editor}}
{printnames[given-family]{editor}%
newcunit
usebibmacro{cpubl+loc+year}}}}
To skip straight to the short form, you can test if either the citation has already been seen or the toggle cms@allshort
(which is set by the short
package option) is set to true.
Change the edcite
macro to:
newbibmacro*{edcite}{%
ifboolexpr{
test {ifciteibid}
and
not test {iffirstonpage}
}
{usebibmacro{cite:ibid}}
{ifboolexpr{
test {ifciteseen}
or
togl {cms@allshort}
}
{printnames[labelname]{editor}}
{printnames[given-family]{editor}%
newcunit
usebibmacro{cpubl+loc+year}}}}
edited 26 mins ago
answered 4 hours ago
David PurtonDavid Purton
9,3301835
9,3301835
Wonderful, thank you! It's great to have this keyed to theshort
option.
– Alex Roberts
4 mins ago
add a comment |
Wonderful, thank you! It's great to have this keyed to theshort
option.
– Alex Roberts
4 mins ago
Wonderful, thank you! It's great to have this keyed to the
short
option.– Alex Roberts
4 mins ago
Wonderful, thank you! It's great to have this keyed to the
short
option.– Alex Roberts
4 mins ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f473256%2fhow-to-make-edcite-skip-straight-to-the-short-form-when-biblatex-chicago-short%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Should the first citation be the editor's full name or just family name?
– David Purton
4 hours ago
Just family name.
– Alex Roberts
28 mins ago