Biblatex - how to use organization's acronym in in-text citation, and full name in the references?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I am referencing a data booklet, produced by the International Baccalaureate Organization. I wish to use the abbreviated in-text citation of:
(IBO, 2016)
However, I wish to have the full name in the references:
International Baccalaureate Organization (2016). Physics data booklet. Cardiff: International Baccalaureate Organization (UK) Ltd.
How do I do this?
A MWE:
documentclassarticle
usepackage[style=authoryear]biblatex % Referencing
bibliographytest.bib
renewcommand*nameyeardelimaddcommaspace
beginfilecontentstest.bib
@bookib,
author = International Baccalaureate Organization,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
begindocument
Lorem ipsum parenciteib.
printbibliography
nocite*
enddocument
Which outputs:
biblatex
add a comment |Â
up vote
1
down vote
favorite
I am referencing a data booklet, produced by the International Baccalaureate Organization. I wish to use the abbreviated in-text citation of:
(IBO, 2016)
However, I wish to have the full name in the references:
International Baccalaureate Organization (2016). Physics data booklet. Cardiff: International Baccalaureate Organization (UK) Ltd.
How do I do this?
A MWE:
documentclassarticle
usepackage[style=authoryear]biblatex % Referencing
bibliographytest.bib
renewcommand*nameyeardelimaddcommaspace
beginfilecontentstest.bib
@bookib,
author = International Baccalaureate Organization,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
begindocument
Lorem ipsum parenciteib.
printbibliography
nocite*
enddocument
Which outputs:
biblatex
bibliography
takes the file name without extension. So it should bebibliographytest
in your example. Better yet, useaddbibresource
(with file extension).
– moewe
3 hours ago
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am referencing a data booklet, produced by the International Baccalaureate Organization. I wish to use the abbreviated in-text citation of:
(IBO, 2016)
However, I wish to have the full name in the references:
International Baccalaureate Organization (2016). Physics data booklet. Cardiff: International Baccalaureate Organization (UK) Ltd.
How do I do this?
A MWE:
documentclassarticle
usepackage[style=authoryear]biblatex % Referencing
bibliographytest.bib
renewcommand*nameyeardelimaddcommaspace
beginfilecontentstest.bib
@bookib,
author = International Baccalaureate Organization,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
begindocument
Lorem ipsum parenciteib.
printbibliography
nocite*
enddocument
Which outputs:
biblatex
I am referencing a data booklet, produced by the International Baccalaureate Organization. I wish to use the abbreviated in-text citation of:
(IBO, 2016)
However, I wish to have the full name in the references:
International Baccalaureate Organization (2016). Physics data booklet. Cardiff: International Baccalaureate Organization (UK) Ltd.
How do I do this?
A MWE:
documentclassarticle
usepackage[style=authoryear]biblatex % Referencing
bibliographytest.bib
renewcommand*nameyeardelimaddcommaspace
beginfilecontentstest.bib
@bookib,
author = International Baccalaureate Organization,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
begindocument
Lorem ipsum parenciteib.
printbibliography
nocite*
enddocument
Which outputs:
biblatex
biblatex
edited 3 hours ago
moewe
76.4k797290
76.4k797290
asked 3 hours ago
George Tian
1205
1205
bibliography
takes the file name without extension. So it should bebibliographytest
in your example. Better yet, useaddbibresource
(with file extension).
– moewe
3 hours ago
add a comment |Â
bibliography
takes the file name without extension. So it should bebibliographytest
in your example. Better yet, useaddbibresource
(with file extension).
– moewe
3 hours ago
bibliography
takes the file name without extension. So it should be bibliographytest
in your example. Better yet, use addbibresource
(with file extension).– moewe
3 hours ago
bibliography
takes the file name without extension. So it should be bibliographytest
in your example. Better yet, use addbibresource
(with file extension).– moewe
3 hours ago
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
That is exactly what shortauthor
was made for.
documentclassarticle
usepackage[style=authoryear]biblatex
DeclareDelimFormatnameyeardelimaddcommaspace
beginfilecontentsjobname.bib
@bookib,
author = International Baccalaureate Organization,
shortauthor = IBU,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
addbibresourcejobname.bib
begindocument
Lorem ipsum parenciteib.
printbibliography
enddocument
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
That is exactly what shortauthor
was made for.
documentclassarticle
usepackage[style=authoryear]biblatex
DeclareDelimFormatnameyeardelimaddcommaspace
beginfilecontentsjobname.bib
@bookib,
author = International Baccalaureate Organization,
shortauthor = IBU,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
addbibresourcejobname.bib
begindocument
Lorem ipsum parenciteib.
printbibliography
enddocument
add a comment |Â
up vote
2
down vote
accepted
That is exactly what shortauthor
was made for.
documentclassarticle
usepackage[style=authoryear]biblatex
DeclareDelimFormatnameyeardelimaddcommaspace
beginfilecontentsjobname.bib
@bookib,
author = International Baccalaureate Organization,
shortauthor = IBU,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
addbibresourcejobname.bib
begindocument
Lorem ipsum parenciteib.
printbibliography
enddocument
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
That is exactly what shortauthor
was made for.
documentclassarticle
usepackage[style=authoryear]biblatex
DeclareDelimFormatnameyeardelimaddcommaspace
beginfilecontentsjobname.bib
@bookib,
author = International Baccalaureate Organization,
shortauthor = IBU,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
addbibresourcejobname.bib
begindocument
Lorem ipsum parenciteib.
printbibliography
enddocument
That is exactly what shortauthor
was made for.
documentclassarticle
usepackage[style=authoryear]biblatex
DeclareDelimFormatnameyeardelimaddcommaspace
beginfilecontentsjobname.bib
@bookib,
author = International Baccalaureate Organization,
shortauthor = IBU,
title = Physics data booklet,
publisher = International Baccalaureate Organization (UK) Ltd,
date = 2016-11,
location = Cardiff
endfilecontents
addbibresourcejobname.bib
begindocument
Lorem ipsum parenciteib.
printbibliography
enddocument
answered 3 hours ago
moewe
76.4k797290
76.4k797290
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f452054%2fbiblatex-how-to-use-organizations-acronym-in-in-text-citation-and-full-name%23new-answer', 'question_page');
);
Post as a guest
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
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
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
bibliography
takes the file name without extension. So it should bebibliographytest
in your example. Better yet, useaddbibresource
(with file extension).– moewe
3 hours ago