customizing biblatex / authoryear: labels in bibliography and format of editorText-citation at start of bibliography entry (BibLaTeX)citestyle=authortitle-icomp, but including year?Customizing the biblatex style authoryearCustomizing the biblatex style authoryear - Part 2Citing (author, journalabbr., year) neededBiblatex Incollection entry with no authorDeleted author names if repeatedCustomize biblatex authoryear bibliographyCustomizing Bibliography Driver with BiblatexHaving trouble customizing biblatex bibliography formatCustomizing biblatex harvard (authoryear) style
Watching something be written to a file live with tail
Fully-Firstable Anagram Sets
Why do I get two different answers for this counting problem?
How to determine what difficulty is right for the game?
RSA: Danger of using p to create q
What's the point of deactivating Num Lock on login screens?
Today is the Center
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Could an aircraft fly or hover using only jets of compressed air?
Maximum likelihood parameters deviate from posterior distributions
Arrow those variables!
How can I make my BBEG immortal short of making them a Lich or Vampire?
How to efficiently unroll a matrix by value with numpy?
Why can't I see bouncing of a switch on an oscilloscope?
Perform and show arithmetic with LuaLaTeX
Did Shadowfax go to Valinor?
LWC SFDX source push error TypeError: LWC1009: decl.moveTo is not a function
Add text to same line using sed
What typically incentivizes a professor to change jobs to a lower ranking university?
How much RAM could one put in a typical 80386 setup?
What's that red-plus icon near a text?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
Why doesn't H₄O²⁺ exist?
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
customizing biblatex / authoryear: labels in bibliography and format of editor
Text-citation at start of bibliography entry (BibLaTeX)citestyle=authortitle-icomp, but including year?Customizing the biblatex style authoryearCustomizing the biblatex style authoryear - Part 2Citing (author, journalabbr., year) neededBiblatex Incollection entry with no authorDeleted author names if repeatedCustomize biblatex authoryear bibliographyCustomizing Bibliography Driver with BiblatexHaving trouble customizing biblatex bibliography formatCustomizing biblatex harvard (authoryear) style
I am trying to customize biblatex such that all requirements of my university are met. I use authortitle as bibstyle and authoryear as citestyle. My language is French. I made already some changes, see the code sample. There are however to changes that I cannot figure out how to make. Maybe I can find some help here. The bibliography entries should for example look like this:
(Impey--MacGregor 1985) Impey, O. et MacGregor, A. (dir.), The origins of museums: the cabinet of curiosities in the sixteenth- and seventeenth century Europe, Oxford, Clarendon Press, 1985
The following changes are missing:
When I cite a source in the text (I basically only use articles and books), the format is: (Impey--MacGregor 1985), which I generate with parencite. I want that this label (with the round brackets) also appears at the beginning of the corresponding entry in the bibliography.
It happens that at some sources the authors are editors at the same time. In those cases I want to write a (dir.) behind the last author name, as in the upper example, instead of the automatic "sous la direction de ...", which would mention the same names one more time.
In the example I have shown I used the following source:
@bookim85,
author = Impey, O. and MacGregor, A.,
title = The origins of museums: the cabinet of curiosities in sixteenth- and senventeenth century Europe,
editor = Impey, O. and MacGregor, A.,
year = 1985,
volume = ,
publisher = Oxford, Clarendon Press,
pages = ,
isbn = ,
keywords = bibliographie
and this is my file:
documentclassamsart
usepackage[left=2.5cm,bottom=2.8cm,right=2.5cm,top=2.3cm]geometry
usepackagegraphicx
usepackagecolor
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes % french quotation marks in the bibliography
usepackage[french]babel
usepackage[backend=biber,
bibstyle=authortitle,
citestyle=authoryear,
babel = hyphen
]biblatex
bibliographybibli
% The following block of code makes names separated by "--" in the citations
letoldmultinamedelimmultinamedelim
letoldfinalnamedelimfinalnamedelim
renewcommand*multinamedelim--
renewcommand*finalnamedelim--
AtBeginBibliography%
renewcommand*multinamedelimoldmultinamedelim%
renewcommand*finalnamedelimoldfinalnamedelim%
% Changes the point after the author name to a comma
renewcommand*newunitpunctaddcommaspace
% Normally in French the authors appear in small capitals when cited. The following command prevents this.
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
% Last name first, then first name
DeclareNameAliasauthorlast-first
begindocument
title[Projet de thèse]Titre du projet
authorNom de l'auteur
maketitle
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Thanks a lot in advance!
biblatex
add a comment |
I am trying to customize biblatex such that all requirements of my university are met. I use authortitle as bibstyle and authoryear as citestyle. My language is French. I made already some changes, see the code sample. There are however to changes that I cannot figure out how to make. Maybe I can find some help here. The bibliography entries should for example look like this:
(Impey--MacGregor 1985) Impey, O. et MacGregor, A. (dir.), The origins of museums: the cabinet of curiosities in the sixteenth- and seventeenth century Europe, Oxford, Clarendon Press, 1985
The following changes are missing:
When I cite a source in the text (I basically only use articles and books), the format is: (Impey--MacGregor 1985), which I generate with parencite. I want that this label (with the round brackets) also appears at the beginning of the corresponding entry in the bibliography.
It happens that at some sources the authors are editors at the same time. In those cases I want to write a (dir.) behind the last author name, as in the upper example, instead of the automatic "sous la direction de ...", which would mention the same names one more time.
In the example I have shown I used the following source:
@bookim85,
author = Impey, O. and MacGregor, A.,
title = The origins of museums: the cabinet of curiosities in sixteenth- and senventeenth century Europe,
editor = Impey, O. and MacGregor, A.,
year = 1985,
volume = ,
publisher = Oxford, Clarendon Press,
pages = ,
isbn = ,
keywords = bibliographie
and this is my file:
documentclassamsart
usepackage[left=2.5cm,bottom=2.8cm,right=2.5cm,top=2.3cm]geometry
usepackagegraphicx
usepackagecolor
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes % french quotation marks in the bibliography
usepackage[french]babel
usepackage[backend=biber,
bibstyle=authortitle,
citestyle=authoryear,
babel = hyphen
]biblatex
bibliographybibli
% The following block of code makes names separated by "--" in the citations
letoldmultinamedelimmultinamedelim
letoldfinalnamedelimfinalnamedelim
renewcommand*multinamedelim--
renewcommand*finalnamedelim--
AtBeginBibliography%
renewcommand*multinamedelimoldmultinamedelim%
renewcommand*finalnamedelimoldfinalnamedelim%
% Changes the point after the author name to a comma
renewcommand*newunitpunctaddcommaspace
% Normally in French the authors appear in small capitals when cited. The following command prevents this.
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
% Last name first, then first name
DeclareNameAliasauthorlast-first
begindocument
title[Projet de thèse]Titre du projet
authorNom de l'auteur
maketitle
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Thanks a lot in advance!
biblatex
Welcome to TeX.SX! Good question style with minimal working code. (+1)
– Bobyandbob
May 27 '18 at 16:34
Welcome to TeX.SX! You would probably be interested inbiblatex-ext
.
– gusbrs
May 27 '18 at 16:35
Re point 2: I think it is extremely rare to have a case where one person is both author and editor and should be credited as such. In the example I think we are looking at a@collection
and Impey, O. and MacGregor, A. are only editors.
– moewe
May 27 '18 at 16:38
add a comment |
I am trying to customize biblatex such that all requirements of my university are met. I use authortitle as bibstyle and authoryear as citestyle. My language is French. I made already some changes, see the code sample. There are however to changes that I cannot figure out how to make. Maybe I can find some help here. The bibliography entries should for example look like this:
(Impey--MacGregor 1985) Impey, O. et MacGregor, A. (dir.), The origins of museums: the cabinet of curiosities in the sixteenth- and seventeenth century Europe, Oxford, Clarendon Press, 1985
The following changes are missing:
When I cite a source in the text (I basically only use articles and books), the format is: (Impey--MacGregor 1985), which I generate with parencite. I want that this label (with the round brackets) also appears at the beginning of the corresponding entry in the bibliography.
It happens that at some sources the authors are editors at the same time. In those cases I want to write a (dir.) behind the last author name, as in the upper example, instead of the automatic "sous la direction de ...", which would mention the same names one more time.
In the example I have shown I used the following source:
@bookim85,
author = Impey, O. and MacGregor, A.,
title = The origins of museums: the cabinet of curiosities in sixteenth- and senventeenth century Europe,
editor = Impey, O. and MacGregor, A.,
year = 1985,
volume = ,
publisher = Oxford, Clarendon Press,
pages = ,
isbn = ,
keywords = bibliographie
and this is my file:
documentclassamsart
usepackage[left=2.5cm,bottom=2.8cm,right=2.5cm,top=2.3cm]geometry
usepackagegraphicx
usepackagecolor
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes % french quotation marks in the bibliography
usepackage[french]babel
usepackage[backend=biber,
bibstyle=authortitle,
citestyle=authoryear,
babel = hyphen
]biblatex
bibliographybibli
% The following block of code makes names separated by "--" in the citations
letoldmultinamedelimmultinamedelim
letoldfinalnamedelimfinalnamedelim
renewcommand*multinamedelim--
renewcommand*finalnamedelim--
AtBeginBibliography%
renewcommand*multinamedelimoldmultinamedelim%
renewcommand*finalnamedelimoldfinalnamedelim%
% Changes the point after the author name to a comma
renewcommand*newunitpunctaddcommaspace
% Normally in French the authors appear in small capitals when cited. The following command prevents this.
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
% Last name first, then first name
DeclareNameAliasauthorlast-first
begindocument
title[Projet de thèse]Titre du projet
authorNom de l'auteur
maketitle
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Thanks a lot in advance!
biblatex
I am trying to customize biblatex such that all requirements of my university are met. I use authortitle as bibstyle and authoryear as citestyle. My language is French. I made already some changes, see the code sample. There are however to changes that I cannot figure out how to make. Maybe I can find some help here. The bibliography entries should for example look like this:
(Impey--MacGregor 1985) Impey, O. et MacGregor, A. (dir.), The origins of museums: the cabinet of curiosities in the sixteenth- and seventeenth century Europe, Oxford, Clarendon Press, 1985
The following changes are missing:
When I cite a source in the text (I basically only use articles and books), the format is: (Impey--MacGregor 1985), which I generate with parencite. I want that this label (with the round brackets) also appears at the beginning of the corresponding entry in the bibliography.
It happens that at some sources the authors are editors at the same time. In those cases I want to write a (dir.) behind the last author name, as in the upper example, instead of the automatic "sous la direction de ...", which would mention the same names one more time.
In the example I have shown I used the following source:
@bookim85,
author = Impey, O. and MacGregor, A.,
title = The origins of museums: the cabinet of curiosities in sixteenth- and senventeenth century Europe,
editor = Impey, O. and MacGregor, A.,
year = 1985,
volume = ,
publisher = Oxford, Clarendon Press,
pages = ,
isbn = ,
keywords = bibliographie
and this is my file:
documentclassamsart
usepackage[left=2.5cm,bottom=2.8cm,right=2.5cm,top=2.3cm]geometry
usepackagegraphicx
usepackagecolor
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes % french quotation marks in the bibliography
usepackage[french]babel
usepackage[backend=biber,
bibstyle=authortitle,
citestyle=authoryear,
babel = hyphen
]biblatex
bibliographybibli
% The following block of code makes names separated by "--" in the citations
letoldmultinamedelimmultinamedelim
letoldfinalnamedelimfinalnamedelim
renewcommand*multinamedelim--
renewcommand*finalnamedelim--
AtBeginBibliography%
renewcommand*multinamedelimoldmultinamedelim%
renewcommand*finalnamedelimoldfinalnamedelim%
% Changes the point after the author name to a comma
renewcommand*newunitpunctaddcommaspace
% Normally in French the authors appear in small capitals when cited. The following command prevents this.
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
% Last name first, then first name
DeclareNameAliasauthorlast-first
begindocument
title[Projet de thèse]Titre du projet
authorNom de l'auteur
maketitle
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Thanks a lot in advance!
biblatex
biblatex
asked May 27 '18 at 16:29
MaximilianMaximilian
232
232
Welcome to TeX.SX! Good question style with minimal working code. (+1)
– Bobyandbob
May 27 '18 at 16:34
Welcome to TeX.SX! You would probably be interested inbiblatex-ext
.
– gusbrs
May 27 '18 at 16:35
Re point 2: I think it is extremely rare to have a case where one person is both author and editor and should be credited as such. In the example I think we are looking at a@collection
and Impey, O. and MacGregor, A. are only editors.
– moewe
May 27 '18 at 16:38
add a comment |
Welcome to TeX.SX! Good question style with minimal working code. (+1)
– Bobyandbob
May 27 '18 at 16:34
Welcome to TeX.SX! You would probably be interested inbiblatex-ext
.
– gusbrs
May 27 '18 at 16:35
Re point 2: I think it is extremely rare to have a case where one person is both author and editor and should be credited as such. In the example I think we are looking at a@collection
and Impey, O. and MacGregor, A. are only editors.
– moewe
May 27 '18 at 16:38
Welcome to TeX.SX! Good question style with minimal working code. (+1)
– Bobyandbob
May 27 '18 at 16:34
Welcome to TeX.SX! Good question style with minimal working code. (+1)
– Bobyandbob
May 27 '18 at 16:34
Welcome to TeX.SX! You would probably be interested in
biblatex-ext
.– gusbrs
May 27 '18 at 16:35
Welcome to TeX.SX! You would probably be interested in
biblatex-ext
.– gusbrs
May 27 '18 at 16:35
Re point 2: I think it is extremely rare to have a case where one person is both author and editor and should be credited as such. In the example I think we are looking at a
@collection
and Impey, O. and MacGregor, A. are only editors.– moewe
May 27 '18 at 16:38
Re point 2: I think it is extremely rare to have a case where one person is both author and editor and should be credited as such. In the example I think we are looking at a
@collection
and Impey, O. and MacGregor, A. are only editors.– moewe
May 27 '18 at 16:38
add a comment |
1 Answer
1
active
oldest
votes
For issue no. 1 you can use biblatex-ext
and its introcite=plain
option.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes
usepackage[french]babel
usepackage[backend=biber,
bibstyle = ext-authortitle,
citestyle = ext-authoryear,
introcite=plain,
autolang = hyphen
]biblatex
%usepackagefilecontents
beginfilecontentsjobname.bib
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
endfilecontents
addbibresourcejobname.bib
DeclareFieldFormatbbx@introcitemkbibparens#1
renewcommand*introcitepunctaddspace
renewcommand*newunitpunctaddcommaspace
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
DeclareDelimFormatmultinamedelim--
DeclareDelimAliasfinalnamedelimmultinamedelim
DeclareDelimFormat[bib]multinamedelimaddcommaspace
DeclareDelimFormat[bib]finalnamedelim%
ifnumgreatervalueliststop2finalandcomma%
addspacebibstringandspace
DeclareNameAliassortnamefamily-given% sortname is probably what you want, updated to new (>=v3.3) name format
DeclareFieldFormateditortypemkbibparens#1
DeclareDelimFormateditortypedelimaddspace
DeclareFieldAliastranslatortypeeditortype
DeclareDelimAliastranslatortypedelimeditortypedelim
renewcommand*subtitlepunctaddcolonspace
renewcommand*locpubdelimaddcommaspace
begindocument
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Re your second issue: I think it is going to be very rare that you have a work where the same list of people is author and editor and where you would want to conflate the two such that only the editors remain.
In the case at hand a bit of googling seems to suggest to me that Messrs Impey and MavGregor need not be listed as author
s at all. They are editors of the entire volume, but not the authors. So the correct input seems to be (note @collection
for a collection of works by different authors instead of @book
for a book written in its entirety by the same set of authors)
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
Edited for name changes in v0.4 of biblatex-ext
.
Hi Moewe, I tested your solution and it works perfectly. Thank you! This is a really great community where you get really good advice.
– Maximilian
May 28 '18 at 12:21
Your point, that Impey and MacGregor are actually only editors, is also good and justified. I guess I mainly had it like that so that their names appear in the citation. But you fixed this, too!
– Maximilian
May 28 '18 at 12:22
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2f433643%2fcustomizing-biblatex-authoryear-labels-in-bibliography-and-format-of-editor%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
For issue no. 1 you can use biblatex-ext
and its introcite=plain
option.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes
usepackage[french]babel
usepackage[backend=biber,
bibstyle = ext-authortitle,
citestyle = ext-authoryear,
introcite=plain,
autolang = hyphen
]biblatex
%usepackagefilecontents
beginfilecontentsjobname.bib
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
endfilecontents
addbibresourcejobname.bib
DeclareFieldFormatbbx@introcitemkbibparens#1
renewcommand*introcitepunctaddspace
renewcommand*newunitpunctaddcommaspace
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
DeclareDelimFormatmultinamedelim--
DeclareDelimAliasfinalnamedelimmultinamedelim
DeclareDelimFormat[bib]multinamedelimaddcommaspace
DeclareDelimFormat[bib]finalnamedelim%
ifnumgreatervalueliststop2finalandcomma%
addspacebibstringandspace
DeclareNameAliassortnamefamily-given% sortname is probably what you want, updated to new (>=v3.3) name format
DeclareFieldFormateditortypemkbibparens#1
DeclareDelimFormateditortypedelimaddspace
DeclareFieldAliastranslatortypeeditortype
DeclareDelimAliastranslatortypedelimeditortypedelim
renewcommand*subtitlepunctaddcolonspace
renewcommand*locpubdelimaddcommaspace
begindocument
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Re your second issue: I think it is going to be very rare that you have a work where the same list of people is author and editor and where you would want to conflate the two such that only the editors remain.
In the case at hand a bit of googling seems to suggest to me that Messrs Impey and MavGregor need not be listed as author
s at all. They are editors of the entire volume, but not the authors. So the correct input seems to be (note @collection
for a collection of works by different authors instead of @book
for a book written in its entirety by the same set of authors)
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
Edited for name changes in v0.4 of biblatex-ext
.
Hi Moewe, I tested your solution and it works perfectly. Thank you! This is a really great community where you get really good advice.
– Maximilian
May 28 '18 at 12:21
Your point, that Impey and MacGregor are actually only editors, is also good and justified. I guess I mainly had it like that so that their names appear in the citation. But you fixed this, too!
– Maximilian
May 28 '18 at 12:22
add a comment |
For issue no. 1 you can use biblatex-ext
and its introcite=plain
option.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes
usepackage[french]babel
usepackage[backend=biber,
bibstyle = ext-authortitle,
citestyle = ext-authoryear,
introcite=plain,
autolang = hyphen
]biblatex
%usepackagefilecontents
beginfilecontentsjobname.bib
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
endfilecontents
addbibresourcejobname.bib
DeclareFieldFormatbbx@introcitemkbibparens#1
renewcommand*introcitepunctaddspace
renewcommand*newunitpunctaddcommaspace
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
DeclareDelimFormatmultinamedelim--
DeclareDelimAliasfinalnamedelimmultinamedelim
DeclareDelimFormat[bib]multinamedelimaddcommaspace
DeclareDelimFormat[bib]finalnamedelim%
ifnumgreatervalueliststop2finalandcomma%
addspacebibstringandspace
DeclareNameAliassortnamefamily-given% sortname is probably what you want, updated to new (>=v3.3) name format
DeclareFieldFormateditortypemkbibparens#1
DeclareDelimFormateditortypedelimaddspace
DeclareFieldAliastranslatortypeeditortype
DeclareDelimAliastranslatortypedelimeditortypedelim
renewcommand*subtitlepunctaddcolonspace
renewcommand*locpubdelimaddcommaspace
begindocument
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Re your second issue: I think it is going to be very rare that you have a work where the same list of people is author and editor and where you would want to conflate the two such that only the editors remain.
In the case at hand a bit of googling seems to suggest to me that Messrs Impey and MavGregor need not be listed as author
s at all. They are editors of the entire volume, but not the authors. So the correct input seems to be (note @collection
for a collection of works by different authors instead of @book
for a book written in its entirety by the same set of authors)
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
Edited for name changes in v0.4 of biblatex-ext
.
Hi Moewe, I tested your solution and it works perfectly. Thank you! This is a really great community where you get really good advice.
– Maximilian
May 28 '18 at 12:21
Your point, that Impey and MacGregor are actually only editors, is also good and justified. I guess I mainly had it like that so that their names appear in the citation. But you fixed this, too!
– Maximilian
May 28 '18 at 12:22
add a comment |
For issue no. 1 you can use biblatex-ext
and its introcite=plain
option.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes
usepackage[french]babel
usepackage[backend=biber,
bibstyle = ext-authortitle,
citestyle = ext-authoryear,
introcite=plain,
autolang = hyphen
]biblatex
%usepackagefilecontents
beginfilecontentsjobname.bib
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
endfilecontents
addbibresourcejobname.bib
DeclareFieldFormatbbx@introcitemkbibparens#1
renewcommand*introcitepunctaddspace
renewcommand*newunitpunctaddcommaspace
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
DeclareDelimFormatmultinamedelim--
DeclareDelimAliasfinalnamedelimmultinamedelim
DeclareDelimFormat[bib]multinamedelimaddcommaspace
DeclareDelimFormat[bib]finalnamedelim%
ifnumgreatervalueliststop2finalandcomma%
addspacebibstringandspace
DeclareNameAliassortnamefamily-given% sortname is probably what you want, updated to new (>=v3.3) name format
DeclareFieldFormateditortypemkbibparens#1
DeclareDelimFormateditortypedelimaddspace
DeclareFieldAliastranslatortypeeditortype
DeclareDelimAliastranslatortypedelimeditortypedelim
renewcommand*subtitlepunctaddcolonspace
renewcommand*locpubdelimaddcommaspace
begindocument
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Re your second issue: I think it is going to be very rare that you have a work where the same list of people is author and editor and where you would want to conflate the two such that only the editors remain.
In the case at hand a bit of googling seems to suggest to me that Messrs Impey and MavGregor need not be listed as author
s at all. They are editors of the entire volume, but not the authors. So the correct input seems to be (note @collection
for a collection of works by different authors instead of @book
for a book written in its entirety by the same set of authors)
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
Edited for name changes in v0.4 of biblatex-ext
.
For issue no. 1 you can use biblatex-ext
and its introcite=plain
option.
documentclassamsart
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagecsquotes
usepackage[french]babel
usepackage[backend=biber,
bibstyle = ext-authortitle,
citestyle = ext-authoryear,
introcite=plain,
autolang = hyphen
]biblatex
%usepackagefilecontents
beginfilecontentsjobname.bib
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
endfilecontents
addbibresourcejobname.bib
DeclareFieldFormatbbx@introcitemkbibparens#1
renewcommand*introcitepunctaddspace
renewcommand*newunitpunctaddcommaspace
DefineBibliographyExtrasfrenchrestorecommandmkbibnamefamily
DeclareDelimFormatmultinamedelim--
DeclareDelimAliasfinalnamedelimmultinamedelim
DeclareDelimFormat[bib]multinamedelimaddcommaspace
DeclareDelimFormat[bib]finalnamedelim%
ifnumgreatervalueliststop2finalandcomma%
addspacebibstringandspace
DeclareNameAliassortnamefamily-given% sortname is probably what you want, updated to new (>=v3.3) name format
DeclareFieldFormateditortypemkbibparens#1
DeclareDelimFormateditortypedelimaddspace
DeclareFieldAliastranslatortypeeditortype
DeclareDelimAliastranslatortypedelimeditortypedelim
renewcommand*subtitlepunctaddcolonspace
renewcommand*locpubdelimaddcommaspace
begindocument
On a lu parenciteim85.
printbibheading
printbibliography[keyword=source, heading=subbibliography, title=Sources]
printbibliography[keyword=bibliographie, heading=subbibliography, title=Bibliographie]
enddocument
Re your second issue: I think it is going to be very rare that you have a work where the same list of people is author and editor and where you would want to conflate the two such that only the editors remain.
In the case at hand a bit of googling seems to suggest to me that Messrs Impey and MavGregor need not be listed as author
s at all. They are editors of the entire volume, but not the authors. So the correct input seems to be (note @collection
for a collection of works by different authors instead of @book
for a book written in its entirety by the same set of authors)
@collectionim85,
title = The Origins of Museums,
subtitle = The Cabinet of Curiosities in Sixteenth- and Senventeenth-Century Europe,
editor = Impey, Oliver and MacGregor, Arthur,
year = 1985,
location = Oxford,
publisher = Clarendon Press,
keywords = bibliographie,
Edited for name changes in v0.4 of biblatex-ext
.
edited 10 mins ago
answered May 28 '18 at 10:33
moewemoewe
96.2k10117360
96.2k10117360
Hi Moewe, I tested your solution and it works perfectly. Thank you! This is a really great community where you get really good advice.
– Maximilian
May 28 '18 at 12:21
Your point, that Impey and MacGregor are actually only editors, is also good and justified. I guess I mainly had it like that so that their names appear in the citation. But you fixed this, too!
– Maximilian
May 28 '18 at 12:22
add a comment |
Hi Moewe, I tested your solution and it works perfectly. Thank you! This is a really great community where you get really good advice.
– Maximilian
May 28 '18 at 12:21
Your point, that Impey and MacGregor are actually only editors, is also good and justified. I guess I mainly had it like that so that their names appear in the citation. But you fixed this, too!
– Maximilian
May 28 '18 at 12:22
Hi Moewe, I tested your solution and it works perfectly. Thank you! This is a really great community where you get really good advice.
– Maximilian
May 28 '18 at 12:21
Hi Moewe, I tested your solution and it works perfectly. Thank you! This is a really great community where you get really good advice.
– Maximilian
May 28 '18 at 12:21
Your point, that Impey and MacGregor are actually only editors, is also good and justified. I guess I mainly had it like that so that their names appear in the citation. But you fixed this, too!
– Maximilian
May 28 '18 at 12:22
Your point, that Impey and MacGregor are actually only editors, is also good and justified. I guess I mainly had it like that so that their names appear in the citation. But you fixed this, too!
– Maximilian
May 28 '18 at 12:22
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2f433643%2fcustomizing-biblatex-authoryear-labels-in-bibliography-and-format-of-editor%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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
Welcome to TeX.SX! Good question style with minimal working code. (+1)
– Bobyandbob
May 27 '18 at 16:34
Welcome to TeX.SX! You would probably be interested in
biblatex-ext
.– gusbrs
May 27 '18 at 16:35
Re point 2: I think it is extremely rare to have a case where one person is both author and editor and should be credited as such. In the example I think we are looking at a
@collection
and Impey, O. and MacGregor, A. are only editors.– moewe
May 27 '18 at 16:38