Parentheses around year, “normal number†in footnote and a word before footnote
Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
I've got three problems with my document's footcite
for which I can't find a solution. My MWE is the following:
documentclass[%
draft=false,%
paper=a4,%
fontsize=12pt,%
]scrbook
usepackage[%
backend=biber,%
style=authoryear,%
bibstyle=authoryear,%
citestyle=authoryear,%
sorting=anyt,%
]biblatex
addbibresourcejobname.bib
beginfilecontents*jobname.bib
@articleHong.2018,
author = Hong, KiHoon and Park, Kyounghoon and Yu, Jongmin,
year = 2018,
title = Crowding Out in a Dual Currency Regime? Digital Versus Fiat
Currency,
endfilecontents*
begindocument
Sentence~footcite[S.~4]Hong.2018
enddocument
Now I want the following three things to change in the footnote:
- Put parentheses around the year (just the year) not the pagenumber
- Write "Vgl." before the footnote begins (after the number of the footnote)
- Write the number of the footnote as "normal number" not as an exponent.
The current output:
¹Hong, Park, and Yu 2018, S. 4.
should look like this:
1 Vgl. Hong, Park, and Yu (2018), S. 4.
What is the easiest / best way to make this happen?
biblatex
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
4
down vote
favorite
I've got three problems with my document's footcite
for which I can't find a solution. My MWE is the following:
documentclass[%
draft=false,%
paper=a4,%
fontsize=12pt,%
]scrbook
usepackage[%
backend=biber,%
style=authoryear,%
bibstyle=authoryear,%
citestyle=authoryear,%
sorting=anyt,%
]biblatex
addbibresourcejobname.bib
beginfilecontents*jobname.bib
@articleHong.2018,
author = Hong, KiHoon and Park, Kyounghoon and Yu, Jongmin,
year = 2018,
title = Crowding Out in a Dual Currency Regime? Digital Versus Fiat
Currency,
endfilecontents*
begindocument
Sentence~footcite[S.~4]Hong.2018
enddocument
Now I want the following three things to change in the footnote:
- Put parentheses around the year (just the year) not the pagenumber
- Write "Vgl." before the footnote begins (after the number of the footnote)
- Write the number of the footnote as "normal number" not as an exponent.
The current output:
¹Hong, Park, and Yu 2018, S. 4.
should look like this:
1 Vgl. Hong, Park, and Yu (2018), S. 4.
What is the easiest / best way to make this happen?
biblatex
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
sorting=anyt,
makes little sense withstyle=authoryear,
sinceanyt
sorts by the alphabetic label associated withstyle=alphabetic
. I suggest you dropsorting=anyt,
(which will give you the default sortingnyt
).style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is equivalent tostyle=authoryear
. Finally you should not have to writefootcite[S.~4]Hong.2018
,footcite[4]Hong.2018
is enough,biblatex
adds the page prefix for you automatically.
– moewe
1 hour ago
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I've got three problems with my document's footcite
for which I can't find a solution. My MWE is the following:
documentclass[%
draft=false,%
paper=a4,%
fontsize=12pt,%
]scrbook
usepackage[%
backend=biber,%
style=authoryear,%
bibstyle=authoryear,%
citestyle=authoryear,%
sorting=anyt,%
]biblatex
addbibresourcejobname.bib
beginfilecontents*jobname.bib
@articleHong.2018,
author = Hong, KiHoon and Park, Kyounghoon and Yu, Jongmin,
year = 2018,
title = Crowding Out in a Dual Currency Regime? Digital Versus Fiat
Currency,
endfilecontents*
begindocument
Sentence~footcite[S.~4]Hong.2018
enddocument
Now I want the following three things to change in the footnote:
- Put parentheses around the year (just the year) not the pagenumber
- Write "Vgl." before the footnote begins (after the number of the footnote)
- Write the number of the footnote as "normal number" not as an exponent.
The current output:
¹Hong, Park, and Yu 2018, S. 4.
should look like this:
1 Vgl. Hong, Park, and Yu (2018), S. 4.
What is the easiest / best way to make this happen?
biblatex
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I've got three problems with my document's footcite
for which I can't find a solution. My MWE is the following:
documentclass[%
draft=false,%
paper=a4,%
fontsize=12pt,%
]scrbook
usepackage[%
backend=biber,%
style=authoryear,%
bibstyle=authoryear,%
citestyle=authoryear,%
sorting=anyt,%
]biblatex
addbibresourcejobname.bib
beginfilecontents*jobname.bib
@articleHong.2018,
author = Hong, KiHoon and Park, Kyounghoon and Yu, Jongmin,
year = 2018,
title = Crowding Out in a Dual Currency Regime? Digital Versus Fiat
Currency,
endfilecontents*
begindocument
Sentence~footcite[S.~4]Hong.2018
enddocument
Now I want the following three things to change in the footnote:
- Put parentheses around the year (just the year) not the pagenumber
- Write "Vgl." before the footnote begins (after the number of the footnote)
- Write the number of the footnote as "normal number" not as an exponent.
The current output:
¹Hong, Park, and Yu 2018, S. 4.
should look like this:
1 Vgl. Hong, Park, and Yu (2018), S. 4.
What is the easiest / best way to make this happen?
biblatex
biblatex
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 1 hour ago
moewe
81.1k7102310
81.1k7102310
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 1 hour ago
Christian
233
233
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Christian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
sorting=anyt,
makes little sense withstyle=authoryear,
sinceanyt
sorts by the alphabetic label associated withstyle=alphabetic
. I suggest you dropsorting=anyt,
(which will give you the default sortingnyt
).style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is equivalent tostyle=authoryear
. Finally you should not have to writefootcite[S.~4]Hong.2018
,footcite[4]Hong.2018
is enough,biblatex
adds the page prefix for you automatically.
– moewe
1 hour ago
add a comment |Â
1
sorting=anyt,
makes little sense withstyle=authoryear,
sinceanyt
sorts by the alphabetic label associated withstyle=alphabetic
. I suggest you dropsorting=anyt,
(which will give you the default sortingnyt
).style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is equivalent tostyle=authoryear
. Finally you should not have to writefootcite[S.~4]Hong.2018
,footcite[4]Hong.2018
is enough,biblatex
adds the page prefix for you automatically.
– moewe
1 hour ago
1
1
sorting=anyt,
makes little sense with style=authoryear,
since anyt
sorts by the alphabetic label associated with style=alphabetic
. I suggest you drop sorting=anyt,
(which will give you the default sorting nyt
). style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is equivalent to style=authoryear
. Finally you should not have to write footcite[S.~4]Hong.2018
, footcite[4]Hong.2018
is enough, biblatex
adds the page prefix for you automatically.– moewe
1 hour ago
sorting=anyt,
makes little sense with style=authoryear,
since anyt
sorts by the alphabetic label associated with style=alphabetic
. I suggest you drop sorting=anyt,
(which will give you the default sorting nyt
). style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is equivalent to style=authoryear
. Finally you should not have to write footcite[S.~4]Hong.2018
, footcite[4]Hong.2018
is enough, biblatex
adds the page prefix for you automatically.– moewe
1 hour ago
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
Point 1 is fairly simple if you use biblatex-ext
's drop-in replacement for authoryear
, ext-authoryear
. Then you only need
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
Point 2 can be achieved with the optional pre-note argument
Loremautocite[Vgl.][380]sigfridsson
Point 3 can be achieved with
deffootnote1.5em1emthefootnotemarkenskip
In total and keeping in mind my comments under the question (1) that sorting=anyt
is not really appropriate for authoryear
-like styles since it bases its sorting on the alphabetic label of the style=alphabetic
that is not present in authoryear
-like styles, (2) that style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is the same as style=authoryear
and (3) that there is no need to specify "S.~" manually since biblatex
adds it automatically if appropriate, we get
documentclass[fontsize=12pt,ngerman]scrbook
usepackage[T1]fontenc
usepackage[utf8]inputenc
usepackagebabel
usepackagecsquotes
usepackage[
backend=biber,
style=ext-authoryear,
autocite=footnote,
]biblatex
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
deffootnote1.5em1emthefootnotemarkenskip
addbibresourcebiblatex-examples.bib
begindocument
Loremautocite[Vgl.][380]sigfridsson
enddocument
Wow, thank you very much for your detailed answer. This works for me. Just out of curiosity - is there a central way to archive Point 2 so that i don't have to type it before every cite?
– Christian
6 mins ago
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Point 1 is fairly simple if you use biblatex-ext
's drop-in replacement for authoryear
, ext-authoryear
. Then you only need
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
Point 2 can be achieved with the optional pre-note argument
Loremautocite[Vgl.][380]sigfridsson
Point 3 can be achieved with
deffootnote1.5em1emthefootnotemarkenskip
In total and keeping in mind my comments under the question (1) that sorting=anyt
is not really appropriate for authoryear
-like styles since it bases its sorting on the alphabetic label of the style=alphabetic
that is not present in authoryear
-like styles, (2) that style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is the same as style=authoryear
and (3) that there is no need to specify "S.~" manually since biblatex
adds it automatically if appropriate, we get
documentclass[fontsize=12pt,ngerman]scrbook
usepackage[T1]fontenc
usepackage[utf8]inputenc
usepackagebabel
usepackagecsquotes
usepackage[
backend=biber,
style=ext-authoryear,
autocite=footnote,
]biblatex
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
deffootnote1.5em1emthefootnotemarkenskip
addbibresourcebiblatex-examples.bib
begindocument
Loremautocite[Vgl.][380]sigfridsson
enddocument
Wow, thank you very much for your detailed answer. This works for me. Just out of curiosity - is there a central way to archive Point 2 so that i don't have to type it before every cite?
– Christian
6 mins ago
add a comment |Â
up vote
4
down vote
accepted
Point 1 is fairly simple if you use biblatex-ext
's drop-in replacement for authoryear
, ext-authoryear
. Then you only need
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
Point 2 can be achieved with the optional pre-note argument
Loremautocite[Vgl.][380]sigfridsson
Point 3 can be achieved with
deffootnote1.5em1emthefootnotemarkenskip
In total and keeping in mind my comments under the question (1) that sorting=anyt
is not really appropriate for authoryear
-like styles since it bases its sorting on the alphabetic label of the style=alphabetic
that is not present in authoryear
-like styles, (2) that style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is the same as style=authoryear
and (3) that there is no need to specify "S.~" manually since biblatex
adds it automatically if appropriate, we get
documentclass[fontsize=12pt,ngerman]scrbook
usepackage[T1]fontenc
usepackage[utf8]inputenc
usepackagebabel
usepackagecsquotes
usepackage[
backend=biber,
style=ext-authoryear,
autocite=footnote,
]biblatex
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
deffootnote1.5em1emthefootnotemarkenskip
addbibresourcebiblatex-examples.bib
begindocument
Loremautocite[Vgl.][380]sigfridsson
enddocument
Wow, thank you very much for your detailed answer. This works for me. Just out of curiosity - is there a central way to archive Point 2 so that i don't have to type it before every cite?
– Christian
6 mins ago
add a comment |Â
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Point 1 is fairly simple if you use biblatex-ext
's drop-in replacement for authoryear
, ext-authoryear
. Then you only need
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
Point 2 can be achieved with the optional pre-note argument
Loremautocite[Vgl.][380]sigfridsson
Point 3 can be achieved with
deffootnote1.5em1emthefootnotemarkenskip
In total and keeping in mind my comments under the question (1) that sorting=anyt
is not really appropriate for authoryear
-like styles since it bases its sorting on the alphabetic label of the style=alphabetic
that is not present in authoryear
-like styles, (2) that style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is the same as style=authoryear
and (3) that there is no need to specify "S.~" manually since biblatex
adds it automatically if appropriate, we get
documentclass[fontsize=12pt,ngerman]scrbook
usepackage[T1]fontenc
usepackage[utf8]inputenc
usepackagebabel
usepackagecsquotes
usepackage[
backend=biber,
style=ext-authoryear,
autocite=footnote,
]biblatex
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
deffootnote1.5em1emthefootnotemarkenskip
addbibresourcebiblatex-examples.bib
begindocument
Loremautocite[Vgl.][380]sigfridsson
enddocument
Point 1 is fairly simple if you use biblatex-ext
's drop-in replacement for authoryear
, ext-authoryear
. Then you only need
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
Point 2 can be achieved with the optional pre-note argument
Loremautocite[Vgl.][380]sigfridsson
Point 3 can be achieved with
deffootnote1.5em1emthefootnotemarkenskip
In total and keeping in mind my comments under the question (1) that sorting=anyt
is not really appropriate for authoryear
-like styles since it bases its sorting on the alphabetic label of the style=alphabetic
that is not present in authoryear
-like styles, (2) that style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is the same as style=authoryear
and (3) that there is no need to specify "S.~" manually since biblatex
adds it automatically if appropriate, we get
documentclass[fontsize=12pt,ngerman]scrbook
usepackage[T1]fontenc
usepackage[utf8]inputenc
usepackagebabel
usepackagecsquotes
usepackage[
backend=biber,
style=ext-authoryear,
autocite=footnote,
]biblatex
DeclareInnerCiteDelimsfootcitebibopenparenbibcloseparen
deffootnote1.5em1emthefootnotemarkenskip
addbibresourcebiblatex-examples.bib
begindocument
Loremautocite[Vgl.][380]sigfridsson
enddocument
answered 52 mins ago
moewe
81.1k7102310
81.1k7102310
Wow, thank you very much for your detailed answer. This works for me. Just out of curiosity - is there a central way to archive Point 2 so that i don't have to type it before every cite?
– Christian
6 mins ago
add a comment |Â
Wow, thank you very much for your detailed answer. This works for me. Just out of curiosity - is there a central way to archive Point 2 so that i don't have to type it before every cite?
– Christian
6 mins ago
Wow, thank you very much for your detailed answer. This works for me. Just out of curiosity - is there a central way to archive Point 2 so that i don't have to type it before every cite?
– Christian
6 mins ago
Wow, thank you very much for your detailed answer. This works for me. Just out of curiosity - is there a central way to archive Point 2 so that i don't have to type it before every cite?
– Christian
6 mins ago
add a comment |Â
Christian is a new contributor. Be nice, and check out our Code of Conduct.
Christian is a new contributor. Be nice, and check out our Code of Conduct.
Christian is a new contributor. Be nice, and check out our Code of Conduct.
Christian is a new contributor. Be nice, and check out our Code of Conduct.
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%2f458151%2fparentheses-around-year-normal-number-in-footnote-and-a-word-before-footnote%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
1
sorting=anyt,
makes little sense withstyle=authoryear,
sinceanyt
sorts by the alphabetic label associated withstyle=alphabetic
. I suggest you dropsorting=anyt,
(which will give you the default sortingnyt
).style=authoryear, bibstyle=authoryear, citestyle=authoryear,
is equivalent tostyle=authoryear
. Finally you should not have to writefootcite[S.~4]Hong.2018
,footcite[4]Hong.2018
is enough,biblatex
adds the page prefix for you automatically.– moewe
1 hour ago