Slightly modify style in biblatex












0















Edit: I tried making a MWE, I hope it is correct this way. If not, please let me know!



.tex document:



documentclass[a4paper,12pt]{scrreprt}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
style=authoryear,
bibstyle=authortitle,
sortlocale=de_DE,
natbib=true,
url=true,
doi=true,
eprint=false
]{biblatex}

DefineBibliographyStrings{german}{%
urlseen = {Stand:},
}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{addspace}}
{printnames{labelname}%
setunit{addspace}%
ifnamesequal{labelname}{editor}
{printtext[parens]{usebibmacro{editorstrg}}}
{}%
setunit{nameyeardelim}}%
ifentrytype{online}
{setunit{addcommaspace}%
usebibmacro{urldate}
ifnameundef{labelname}
{setunit{addcommaspace}%
usebibmacro{url}
}
{}} }
{usebibmacro{cite:shorthand}}}

addbibresource{MWE.bib}

begin{document}

This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography

end{document}


.bib document:



@Online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}

@Book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen - Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}


I'm using biblatex and have some issues with citing the way I am required to.



There are three things I need to change, but I am totally lost on how I can do it.




  1. The "renewbibmacro" snippet of code (which I found online when I wanted to display the url and the date when the url was seen in footcites too when the author is unknown) also changed that the year suddenly isn't shown on book entries anymore, which was not intended. A book footcite should look like this:


enter image description here




  1. I would like the "Stand: urldate" to be displayed after the url and if possible in square brackets , not round ones ()



  2. What do I need to do so that the last and first name are not separated by a comma in the bibliography and there is a comma instead of a period after the name? Meaning instead of



    "Fritzsch, Harald. Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."



    it is



    "Fritzsch Harald, Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."












share|improve this question




















  • 1





    Welcome to TeX SX! Please post a complete (yet minimal) code reproducing the problem.

    – Bernard
    Feb 16 at 19:53











  • It is much easier to answer questions like this if the code is not posted in several snippets, but as one fully compilable document (a so-called MWE: tex.meta.stackexchange.com/q/228/35864 or MWEB tex.meta.stackexchange.com/q/4407/35864). It is also generally strongly preferred to ask only one question per question and not several (related, no doubt) questions in one. See tex.meta.stackexchange.com/q/7425/35864

    – moewe
    Feb 16 at 19:58











  • Thank you for your comments! I tried making a (hopefully correct) MWE and will remember to post separate questions for every single problem next time.

    – Loviare
    Feb 16 at 20:56











  • Did you find the snippet for the URL in golatex.de/… or somewhere else? Do you also want to retain the feature of that code to write "editor"/"Herausgeber" after the name also in citations?

    – moewe
    Feb 16 at 21:11











  • I believe it was that website, but to be honest I'm not 100% sure. And I don't want "editor"/"Herausgeber" written after the name, I didn't even realise the code had that feature.

    – Loviare
    Feb 16 at 21:19
















0















Edit: I tried making a MWE, I hope it is correct this way. If not, please let me know!



.tex document:



documentclass[a4paper,12pt]{scrreprt}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
style=authoryear,
bibstyle=authortitle,
sortlocale=de_DE,
natbib=true,
url=true,
doi=true,
eprint=false
]{biblatex}

DefineBibliographyStrings{german}{%
urlseen = {Stand:},
}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{addspace}}
{printnames{labelname}%
setunit{addspace}%
ifnamesequal{labelname}{editor}
{printtext[parens]{usebibmacro{editorstrg}}}
{}%
setunit{nameyeardelim}}%
ifentrytype{online}
{setunit{addcommaspace}%
usebibmacro{urldate}
ifnameundef{labelname}
{setunit{addcommaspace}%
usebibmacro{url}
}
{}} }
{usebibmacro{cite:shorthand}}}

addbibresource{MWE.bib}

begin{document}

This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography

end{document}


.bib document:



@Online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}

@Book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen - Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}


I'm using biblatex and have some issues with citing the way I am required to.



There are three things I need to change, but I am totally lost on how I can do it.




  1. The "renewbibmacro" snippet of code (which I found online when I wanted to display the url and the date when the url was seen in footcites too when the author is unknown) also changed that the year suddenly isn't shown on book entries anymore, which was not intended. A book footcite should look like this:


enter image description here




  1. I would like the "Stand: urldate" to be displayed after the url and if possible in square brackets , not round ones ()



  2. What do I need to do so that the last and first name are not separated by a comma in the bibliography and there is a comma instead of a period after the name? Meaning instead of



    "Fritzsch, Harald. Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."



    it is



    "Fritzsch Harald, Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."












share|improve this question




















  • 1





    Welcome to TeX SX! Please post a complete (yet minimal) code reproducing the problem.

    – Bernard
    Feb 16 at 19:53











  • It is much easier to answer questions like this if the code is not posted in several snippets, but as one fully compilable document (a so-called MWE: tex.meta.stackexchange.com/q/228/35864 or MWEB tex.meta.stackexchange.com/q/4407/35864). It is also generally strongly preferred to ask only one question per question and not several (related, no doubt) questions in one. See tex.meta.stackexchange.com/q/7425/35864

    – moewe
    Feb 16 at 19:58











  • Thank you for your comments! I tried making a (hopefully correct) MWE and will remember to post separate questions for every single problem next time.

    – Loviare
    Feb 16 at 20:56











  • Did you find the snippet for the URL in golatex.de/… or somewhere else? Do you also want to retain the feature of that code to write "editor"/"Herausgeber" after the name also in citations?

    – moewe
    Feb 16 at 21:11











  • I believe it was that website, but to be honest I'm not 100% sure. And I don't want "editor"/"Herausgeber" written after the name, I didn't even realise the code had that feature.

    – Loviare
    Feb 16 at 21:19














0












0








0








Edit: I tried making a MWE, I hope it is correct this way. If not, please let me know!



.tex document:



documentclass[a4paper,12pt]{scrreprt}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
style=authoryear,
bibstyle=authortitle,
sortlocale=de_DE,
natbib=true,
url=true,
doi=true,
eprint=false
]{biblatex}

DefineBibliographyStrings{german}{%
urlseen = {Stand:},
}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{addspace}}
{printnames{labelname}%
setunit{addspace}%
ifnamesequal{labelname}{editor}
{printtext[parens]{usebibmacro{editorstrg}}}
{}%
setunit{nameyeardelim}}%
ifentrytype{online}
{setunit{addcommaspace}%
usebibmacro{urldate}
ifnameundef{labelname}
{setunit{addcommaspace}%
usebibmacro{url}
}
{}} }
{usebibmacro{cite:shorthand}}}

addbibresource{MWE.bib}

begin{document}

This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography

end{document}


.bib document:



@Online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}

@Book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen - Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}


I'm using biblatex and have some issues with citing the way I am required to.



There are three things I need to change, but I am totally lost on how I can do it.




  1. The "renewbibmacro" snippet of code (which I found online when I wanted to display the url and the date when the url was seen in footcites too when the author is unknown) also changed that the year suddenly isn't shown on book entries anymore, which was not intended. A book footcite should look like this:


enter image description here




  1. I would like the "Stand: urldate" to be displayed after the url and if possible in square brackets , not round ones ()



  2. What do I need to do so that the last and first name are not separated by a comma in the bibliography and there is a comma instead of a period after the name? Meaning instead of



    "Fritzsch, Harald. Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."



    it is



    "Fritzsch Harald, Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."












share|improve this question
















Edit: I tried making a MWE, I hope it is correct this way. If not, please let me know!



.tex document:



documentclass[a4paper,12pt]{scrreprt}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
style=authoryear,
bibstyle=authortitle,
sortlocale=de_DE,
natbib=true,
url=true,
doi=true,
eprint=false
]{biblatex}

DefineBibliographyStrings{german}{%
urlseen = {Stand:},
}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{addspace}}
{printnames{labelname}%
setunit{addspace}%
ifnamesequal{labelname}{editor}
{printtext[parens]{usebibmacro{editorstrg}}}
{}%
setunit{nameyeardelim}}%
ifentrytype{online}
{setunit{addcommaspace}%
usebibmacro{urldate}
ifnameundef{labelname}
{setunit{addcommaspace}%
usebibmacro{url}
}
{}} }
{usebibmacro{cite:shorthand}}}

addbibresource{MWE.bib}

begin{document}

This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography

end{document}


.bib document:



@Online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}

@Book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen - Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}


I'm using biblatex and have some issues with citing the way I am required to.



There are three things I need to change, but I am totally lost on how I can do it.




  1. The "renewbibmacro" snippet of code (which I found online when I wanted to display the url and the date when the url was seen in footcites too when the author is unknown) also changed that the year suddenly isn't shown on book entries anymore, which was not intended. A book footcite should look like this:


enter image description here




  1. I would like the "Stand: urldate" to be displayed after the url and if possible in square brackets , not round ones ()



  2. What do I need to do so that the last and first name are not separated by a comma in the bibliography and there is a comma instead of a period after the name? Meaning instead of



    "Fritzsch, Harald. Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."



    it is



    "Fritzsch Harald, Elementarteilchen - Bausteine der Materie. München: Verlag
    C.H. Beck, 2004."









biblatex






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 16 at 21:32







Loviare

















asked Feb 16 at 18:46









LoviareLoviare

32




32








  • 1





    Welcome to TeX SX! Please post a complete (yet minimal) code reproducing the problem.

    – Bernard
    Feb 16 at 19:53











  • It is much easier to answer questions like this if the code is not posted in several snippets, but as one fully compilable document (a so-called MWE: tex.meta.stackexchange.com/q/228/35864 or MWEB tex.meta.stackexchange.com/q/4407/35864). It is also generally strongly preferred to ask only one question per question and not several (related, no doubt) questions in one. See tex.meta.stackexchange.com/q/7425/35864

    – moewe
    Feb 16 at 19:58











  • Thank you for your comments! I tried making a (hopefully correct) MWE and will remember to post separate questions for every single problem next time.

    – Loviare
    Feb 16 at 20:56











  • Did you find the snippet for the URL in golatex.de/… or somewhere else? Do you also want to retain the feature of that code to write "editor"/"Herausgeber" after the name also in citations?

    – moewe
    Feb 16 at 21:11











  • I believe it was that website, but to be honest I'm not 100% sure. And I don't want "editor"/"Herausgeber" written after the name, I didn't even realise the code had that feature.

    – Loviare
    Feb 16 at 21:19














  • 1





    Welcome to TeX SX! Please post a complete (yet minimal) code reproducing the problem.

    – Bernard
    Feb 16 at 19:53











  • It is much easier to answer questions like this if the code is not posted in several snippets, but as one fully compilable document (a so-called MWE: tex.meta.stackexchange.com/q/228/35864 or MWEB tex.meta.stackexchange.com/q/4407/35864). It is also generally strongly preferred to ask only one question per question and not several (related, no doubt) questions in one. See tex.meta.stackexchange.com/q/7425/35864

    – moewe
    Feb 16 at 19:58











  • Thank you for your comments! I tried making a (hopefully correct) MWE and will remember to post separate questions for every single problem next time.

    – Loviare
    Feb 16 at 20:56











  • Did you find the snippet for the URL in golatex.de/… or somewhere else? Do you also want to retain the feature of that code to write "editor"/"Herausgeber" after the name also in citations?

    – moewe
    Feb 16 at 21:11











  • I believe it was that website, but to be honest I'm not 100% sure. And I don't want "editor"/"Herausgeber" written after the name, I didn't even realise the code had that feature.

    – Loviare
    Feb 16 at 21:19








1




1





Welcome to TeX SX! Please post a complete (yet minimal) code reproducing the problem.

– Bernard
Feb 16 at 19:53





Welcome to TeX SX! Please post a complete (yet minimal) code reproducing the problem.

– Bernard
Feb 16 at 19:53













It is much easier to answer questions like this if the code is not posted in several snippets, but as one fully compilable document (a so-called MWE: tex.meta.stackexchange.com/q/228/35864 or MWEB tex.meta.stackexchange.com/q/4407/35864). It is also generally strongly preferred to ask only one question per question and not several (related, no doubt) questions in one. See tex.meta.stackexchange.com/q/7425/35864

– moewe
Feb 16 at 19:58





It is much easier to answer questions like this if the code is not posted in several snippets, but as one fully compilable document (a so-called MWE: tex.meta.stackexchange.com/q/228/35864 or MWEB tex.meta.stackexchange.com/q/4407/35864). It is also generally strongly preferred to ask only one question per question and not several (related, no doubt) questions in one. See tex.meta.stackexchange.com/q/7425/35864

– moewe
Feb 16 at 19:58













Thank you for your comments! I tried making a (hopefully correct) MWE and will remember to post separate questions for every single problem next time.

– Loviare
Feb 16 at 20:56





Thank you for your comments! I tried making a (hopefully correct) MWE and will remember to post separate questions for every single problem next time.

– Loviare
Feb 16 at 20:56













Did you find the snippet for the URL in golatex.de/… or somewhere else? Do you also want to retain the feature of that code to write "editor"/"Herausgeber" after the name also in citations?

– moewe
Feb 16 at 21:11





Did you find the snippet for the URL in golatex.de/… or somewhere else? Do you also want to retain the feature of that code to write "editor"/"Herausgeber" after the name also in citations?

– moewe
Feb 16 at 21:11













I believe it was that website, but to be honest I'm not 100% sure. And I don't want "editor"/"Herausgeber" written after the name, I didn't even realise the code had that feature.

– Loviare
Feb 16 at 21:19





I believe it was that website, but to be honest I'm not 100% sure. And I don't want "editor"/"Herausgeber" written after the name, I didn't even realise the code had that feature.

– Loviare
Feb 16 at 21:19










1 Answer
1






active

oldest

votes


















1














You may want to try the following.



The comma between family and given name is controlled with revsdnamepunct, the comma between label/sort name and title with nametitledelim.



I have modernised the cite bibmacro redefinition based on the current definition in authoryear.cbx. The only difference to the original is the added block



     ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}


that prints URL and access date for @online entries without (author/label) name.



The DeclareFieldFormat{urldate} bit takes care of the square brackets. Compare the new definition to the original in biblatex.def.



The DeclareLabeldates make sure that the urldate is not used to populate the label date used for citations and suppresses the 'n.d.'/nodate string for @online entries.



documentclass[a4paper,12pt]{scrartcl}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
citestyle=authoryear,
bibstyle=authortitle,
sorting=nyt,
eprint=false
]{biblatex}

renewcommand*{revsdnamepunct}{}
renewcommand*{mkbibnamefamily}{textsc}
DeclareDelimFormat[bib]{nametitledelim}{addcommaspace}

DeclareDelimFormat{nameyeardelim}{addcommaspace}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{printdelim{nonameyeardelim}}}
{printnames{labelname}%
setunit{printdelim{nameyeardelim}}}%
usebibmacro{cite:labeldate+extradate}%
ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}}
{usebibmacro{cite:shorthand}}}

DefineBibliographyStrings{german}{%
urlseen = {Stand},
}

DeclareFieldFormat{urldate}{mkbibbrackets{bibstring{urlseen}addcolonspace#1}}

DeclareLabeldate{%
field{date}
field{year}
field{eventdate}
field{origdate}
literal{nodate}
}

DeclareLabeldate[online]{%
field{date}
field{year}
field{eventdate}
field{origdate}
}

%usepackage{filecontents}
begin{filecontents}{jobname.bib}
@online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}
@book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen},
subtitle = {Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}
end{filecontents}

addbibresource{jobname.bib}

begin{document}
This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography
end{document}


Vgl. Fritzsch, 2004, S. 32 f.//Vlg. Pauli-Prinzip, url: http : / / www . chemie . de / lexikon / Pauli - Prinzip . html [Stand: 12.08.2018].






share|improve this answer
























  • This is exactly how it is supposed to look; thank you so much for helping a LaTeX beginner out, I honestly appreciate it. ^^

    – Loviare
    Feb 16 at 21:42











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475240%2fslightly-modify-style-in-biblatex%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









1














You may want to try the following.



The comma between family and given name is controlled with revsdnamepunct, the comma between label/sort name and title with nametitledelim.



I have modernised the cite bibmacro redefinition based on the current definition in authoryear.cbx. The only difference to the original is the added block



     ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}


that prints URL and access date for @online entries without (author/label) name.



The DeclareFieldFormat{urldate} bit takes care of the square brackets. Compare the new definition to the original in biblatex.def.



The DeclareLabeldates make sure that the urldate is not used to populate the label date used for citations and suppresses the 'n.d.'/nodate string for @online entries.



documentclass[a4paper,12pt]{scrartcl}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
citestyle=authoryear,
bibstyle=authortitle,
sorting=nyt,
eprint=false
]{biblatex}

renewcommand*{revsdnamepunct}{}
renewcommand*{mkbibnamefamily}{textsc}
DeclareDelimFormat[bib]{nametitledelim}{addcommaspace}

DeclareDelimFormat{nameyeardelim}{addcommaspace}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{printdelim{nonameyeardelim}}}
{printnames{labelname}%
setunit{printdelim{nameyeardelim}}}%
usebibmacro{cite:labeldate+extradate}%
ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}}
{usebibmacro{cite:shorthand}}}

DefineBibliographyStrings{german}{%
urlseen = {Stand},
}

DeclareFieldFormat{urldate}{mkbibbrackets{bibstring{urlseen}addcolonspace#1}}

DeclareLabeldate{%
field{date}
field{year}
field{eventdate}
field{origdate}
literal{nodate}
}

DeclareLabeldate[online]{%
field{date}
field{year}
field{eventdate}
field{origdate}
}

%usepackage{filecontents}
begin{filecontents}{jobname.bib}
@online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}
@book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen},
subtitle = {Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}
end{filecontents}

addbibresource{jobname.bib}

begin{document}
This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography
end{document}


Vgl. Fritzsch, 2004, S. 32 f.//Vlg. Pauli-Prinzip, url: http : / / www . chemie . de / lexikon / Pauli - Prinzip . html [Stand: 12.08.2018].






share|improve this answer
























  • This is exactly how it is supposed to look; thank you so much for helping a LaTeX beginner out, I honestly appreciate it. ^^

    – Loviare
    Feb 16 at 21:42
















1














You may want to try the following.



The comma between family and given name is controlled with revsdnamepunct, the comma between label/sort name and title with nametitledelim.



I have modernised the cite bibmacro redefinition based on the current definition in authoryear.cbx. The only difference to the original is the added block



     ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}


that prints URL and access date for @online entries without (author/label) name.



The DeclareFieldFormat{urldate} bit takes care of the square brackets. Compare the new definition to the original in biblatex.def.



The DeclareLabeldates make sure that the urldate is not used to populate the label date used for citations and suppresses the 'n.d.'/nodate string for @online entries.



documentclass[a4paper,12pt]{scrartcl}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
citestyle=authoryear,
bibstyle=authortitle,
sorting=nyt,
eprint=false
]{biblatex}

renewcommand*{revsdnamepunct}{}
renewcommand*{mkbibnamefamily}{textsc}
DeclareDelimFormat[bib]{nametitledelim}{addcommaspace}

DeclareDelimFormat{nameyeardelim}{addcommaspace}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{printdelim{nonameyeardelim}}}
{printnames{labelname}%
setunit{printdelim{nameyeardelim}}}%
usebibmacro{cite:labeldate+extradate}%
ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}}
{usebibmacro{cite:shorthand}}}

DefineBibliographyStrings{german}{%
urlseen = {Stand},
}

DeclareFieldFormat{urldate}{mkbibbrackets{bibstring{urlseen}addcolonspace#1}}

DeclareLabeldate{%
field{date}
field{year}
field{eventdate}
field{origdate}
literal{nodate}
}

DeclareLabeldate[online]{%
field{date}
field{year}
field{eventdate}
field{origdate}
}

%usepackage{filecontents}
begin{filecontents}{jobname.bib}
@online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}
@book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen},
subtitle = {Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}
end{filecontents}

addbibresource{jobname.bib}

begin{document}
This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography
end{document}


Vgl. Fritzsch, 2004, S. 32 f.//Vlg. Pauli-Prinzip, url: http : / / www . chemie . de / lexikon / Pauli - Prinzip . html [Stand: 12.08.2018].






share|improve this answer
























  • This is exactly how it is supposed to look; thank you so much for helping a LaTeX beginner out, I honestly appreciate it. ^^

    – Loviare
    Feb 16 at 21:42














1












1








1







You may want to try the following.



The comma between family and given name is controlled with revsdnamepunct, the comma between label/sort name and title with nametitledelim.



I have modernised the cite bibmacro redefinition based on the current definition in authoryear.cbx. The only difference to the original is the added block



     ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}


that prints URL and access date for @online entries without (author/label) name.



The DeclareFieldFormat{urldate} bit takes care of the square brackets. Compare the new definition to the original in biblatex.def.



The DeclareLabeldates make sure that the urldate is not used to populate the label date used for citations and suppresses the 'n.d.'/nodate string for @online entries.



documentclass[a4paper,12pt]{scrartcl}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
citestyle=authoryear,
bibstyle=authortitle,
sorting=nyt,
eprint=false
]{biblatex}

renewcommand*{revsdnamepunct}{}
renewcommand*{mkbibnamefamily}{textsc}
DeclareDelimFormat[bib]{nametitledelim}{addcommaspace}

DeclareDelimFormat{nameyeardelim}{addcommaspace}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{printdelim{nonameyeardelim}}}
{printnames{labelname}%
setunit{printdelim{nameyeardelim}}}%
usebibmacro{cite:labeldate+extradate}%
ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}}
{usebibmacro{cite:shorthand}}}

DefineBibliographyStrings{german}{%
urlseen = {Stand},
}

DeclareFieldFormat{urldate}{mkbibbrackets{bibstring{urlseen}addcolonspace#1}}

DeclareLabeldate{%
field{date}
field{year}
field{eventdate}
field{origdate}
literal{nodate}
}

DeclareLabeldate[online]{%
field{date}
field{year}
field{eventdate}
field{origdate}
}

%usepackage{filecontents}
begin{filecontents}{jobname.bib}
@online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}
@book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen},
subtitle = {Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}
end{filecontents}

addbibresource{jobname.bib}

begin{document}
This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography
end{document}


Vgl. Fritzsch, 2004, S. 32 f.//Vlg. Pauli-Prinzip, url: http : / / www . chemie . de / lexikon / Pauli - Prinzip . html [Stand: 12.08.2018].






share|improve this answer













You may want to try the following.



The comma between family and given name is controlled with revsdnamepunct, the comma between label/sort name and title with nametitledelim.



I have modernised the cite bibmacro redefinition based on the current definition in authoryear.cbx. The only difference to the original is the added block



     ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}


that prints URL and access date for @online entries without (author/label) name.



The DeclareFieldFormat{urldate} bit takes care of the square brackets. Compare the new definition to the original in biblatex.def.



The DeclareLabeldates make sure that the urldate is not used to populate the label date used for citations and suppresses the 'n.d.'/nodate string for @online entries.



documentclass[a4paper,12pt]{scrartcl}

usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{url}
usepackage{csquotes}

usepackage[
backend=biber,
citestyle=authoryear,
bibstyle=authortitle,
sorting=nyt,
eprint=false
]{biblatex}

renewcommand*{revsdnamepunct}{}
renewcommand*{mkbibnamefamily}{textsc}
DeclareDelimFormat[bib]{nametitledelim}{addcommaspace}

DeclareDelimFormat{nameyeardelim}{addcommaspace}

renewbibmacro*{cite}{%
iffieldundef{shorthand}
{ifthenelse{ifnameundef{labelname}ORiffieldundef{labelyear}}
{usebibmacro{cite:label}%
setunit{printdelim{nonameyeardelim}}}
{printnames{labelname}%
setunit{printdelim{nameyeardelim}}}%
usebibmacro{cite:labeldate+extradate}%
ifboolexpr{test {ifnameundef{labelname}} and test {ifentrytype{online}}}
{setunit{addcommaspace}%
usebibmacro{url+urldate}}
{}}
{usebibmacro{cite:shorthand}}}

DefineBibliographyStrings{german}{%
urlseen = {Stand},
}

DeclareFieldFormat{urldate}{mkbibbrackets{bibstring{urlseen}addcolonspace#1}}

DeclareLabeldate{%
field{date}
field{year}
field{eventdate}
field{origdate}
literal{nodate}
}

DeclareLabeldate[online]{%
field{date}
field{year}
field{eventdate}
field{origdate}
}

%usepackage{filecontents}
begin{filecontents}{jobname.bib}
@online{paulip,
title = {Pauli-Prinzip},
url = {http://www.chemie.de/lexikon/Pauli-Prinzip.html},
urldate = {2018-08-12},
}
@book{fritzsch,
author = {Harald Fritzsch},
title = {Elementarteilchen},
subtitle = {Bausteine der Materie},
year = {2004},
publisher = {Verlag C.H. Beck},
location = {München},
}
end{filecontents}

addbibresource{jobname.bib}

begin{document}
This is cited from a book footcite[Vgl.][32psq]{fritzsch}

This is cited from a website footcite[Vlg.]{paulip}

printbibliography
end{document}


Vgl. Fritzsch, 2004, S. 32 f.//Vlg. Pauli-Prinzip, url: http : / / www . chemie . de / lexikon / Pauli - Prinzip . html [Stand: 12.08.2018].







share|improve this answer












share|improve this answer



share|improve this answer










answered Feb 16 at 21:33









moewemoewe

91.6k10114347




91.6k10114347













  • This is exactly how it is supposed to look; thank you so much for helping a LaTeX beginner out, I honestly appreciate it. ^^

    – Loviare
    Feb 16 at 21:42



















  • This is exactly how it is supposed to look; thank you so much for helping a LaTeX beginner out, I honestly appreciate it. ^^

    – Loviare
    Feb 16 at 21:42

















This is exactly how it is supposed to look; thank you so much for helping a LaTeX beginner out, I honestly appreciate it. ^^

– Loviare
Feb 16 at 21:42





This is exactly how it is supposed to look; thank you so much for helping a LaTeX beginner out, I honestly appreciate it. ^^

– Loviare
Feb 16 at 21:42


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475240%2fslightly-modify-style-in-biblatex%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

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?