Wie kann der String "doi:" vor dem URL bei Literaturangeben im Literaturverzeichnis entfernt werden? Es gibt in den APA-Richtlinien eine Empfehlung dazu: http://blog.apastyle.org/apastyle/digital-object-identifier-doi/ Öffne in Overleaf
\begin{filecontents*}{\jobname.bib} @ARTICLE{Morey2015, author = {Morey, C. C. and Cong, Y. and Zheng, Y. and Price, M. and Morey, R. D.}, title = {The color-sharing bonus}, subtitle = {Roles of perceptual organization and attentive processes in visual working memory}, journaltitle = {Archives of Scientific Psychology}, date = {2015}, volume = {3}, pages = {18-29}, doi = {https://doi.org/10.1037/arc0000014}, } \end{filecontents*} \documentclass{scrartcl} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage[english]{babel} \usepackage{csquotes} \usepackage[ style=apa, sortlocale=auto, ]{biblatex} \DeclareLanguageMapping{english}{english-apa} \addbibresource{\jobname.bib} \begin{document} \cite{Morey2015} \printbibliography \end{document} |
Der Präfix ist im Feld Öffne in Overleaf
\begin{filecontents*}{\jobname.bib} @ARTICLE{Morey2015, author = {Morey, C. C. and Cong, Y. and Zheng, Y. and Price, M. and Morey, R. D.}, title = {The color-sharing bonus}, subtitle = {Roles of perceptual organization and attentive processes in visual working memory}, journaltitle = {Archives of Scientific Psychology}, date = {2015}, volume = {3}, pages = {18-29}, doi = {https://doi.org/10.1037/arc0000014}, } \end{filecontents*} \documentclass{scrartcl} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage[english]{babel} \usepackage{csquotes} \usepackage[ style=apa, sortlocale=auto, ]{biblatex} \DeclareLanguageMapping{english}{english-apa} \DeclareFieldFormat{doi}{% \ifhyperref {\href{https://dx.doi.org/#1}{\nolinkurl{#1}}} {\nolinkurl{#1}}} \addbibresource{\jobname.bib} \begin{document} \cite{Morey2015} \printbibliography \end{document} Das resultiert dann in: beantwortet 10 Mai '17, 16:08 saputello Bestens! Bei Verwendung des
zu funktionieren mit einem
(10 Mai '17, 20:19)
fritz
@fritz: Bitte verwende keinesfalls Blockcode in Kommentaren, weil er leider noch immer die Kommentarfunktion zerstört. Ich konnte das gerade noch über den Umweg der Umwandlung in eine Antwort und wieder zurück retten!
(11 Mai '17, 07:40)
saputello
Danke für den Hinweis auf die Verwendung von Blockcode in Kommentaren. Der Code in obigen Kommentar funktioniert mit dem
(11 Mai '17, 07:52)
fritz
|
In ConTeXt MKIV löscht man das Wort Öffne in Overleaf
\startbuffer[references] @ARTICLE{Morey2015, author = {Morey, C. C. and Cong, Y. and Zheng, Y. and Price, M. and Morey, R. D.}, title = {The color-sharing bonus}, subtitle = {Roles of perceptual organization and attentive processes in visual working memory}, journal = {Archives of Scientific Psychology}, year = {2015}, volume = {3}, pages = {18-29}, doi = {https://doi.org/10.1037/arc0000014}, } \stopbuffer \usebtxdataset[references.buffer] \usebtxdefinitions[apa] \starttexdefinition unexpanded btx:apa:doi \btxspace \begingroup \setbreakpoints[doi] \ifconditional\btxinteractive \goto { %\hyphenatedurl{doi:\btxflush{doi}} \hyphenatedurl{\btxflush{doi}} } [ url(http://dx.doi.org/\btxflush{doi}) ] \else %\hyphenatedurl{doi:\btxflush{doi}} \hyphenatedurl{\btxflush{doi}} \fi \endgroup \stoptexdefinition \starttext \cite[Morey2015] \placelistofpublications \stoptext beantwortet 11 Mai '17, 07:56 Henri |