von Johannes_B » Mo 20. Okt 2014, 08:18
Was liefert dir folgender Code? Copy + paste + save as josmosBiblatexUrldate.tex + compile!
\begin{filecontents}{\jobname.bib}
@misc{candida,
doi = {http://www.cbs.knaw.nl/collections/BioloMICS.aspx?Table= Yeasts species$\backslash$\%Name = Candida$\backslash$\%20sonorensis$\backslash$\&Fields = All$\backslash$\&ExactMatch = T}, title= {www.cbs.knaw.nl},
url = {http://www.cbs.knaw.nl/collections/BioloMICS.aspx?Table= Yeasts species\&Name= Candida sonorensis\&Fields= All\&ExactMatch= T},
urldate = {2014-10-04},
}
@article{Ilmen2013,
abstract = {blablabla.},
author = {Ilm\'{e}n, Marja and Koivuranta, Kari and Ruohonen, Laura and Rajgarhia, Vineet and Suominen, Pirkko and Penttil\"{a}, Merja},
file = {:home/josmos/.local/share/data/Mendeley Ltd./Mendeley Desktop/Downloaded/Ilm\'{e}n et al. - 2013 - Production of L-lactic acid by the yeast Candida sonorensis expressing heterologous bacterial and fungal lactate.pdf:pdf},
issn = {1475-2859},
journal = {Microbial cell factories},
number = {1},
pages = {53},
pmid = {23706009},
title = {{Production of L-lactic acid by the yeast Candida sonorensis expressing heterologous bacterial and fungal lactate dehydrogenases.}},
url = {http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3680033/?tool = pmcentrez\&report = abstract},
volume = {12},
year = {2013}
}
\end{filecontents}
\documentclass[12pt, ngerman,]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[backend=biber,style=authoryear,
natbib=true]{biblatex}
\addbibresource{\jobname.bib}
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map{
\step[fieldsource=url,
match=\regexp{\\_},
replace=\regexp{_}]
\step[fieldsource=url,
match=\regexp{\\&},
replace=\regexp{&}]
}
}
}
\DefineBibliographyStrings{ngerman}{andothers
=
{{et\,al\adddot}},
}
\renewbibmacro{\urlfield}[1]{\small \normalfont #1}
\begin{document}
paper \parencite{Ilmen2013}
webpage \parencite{candida}
\printbibliography
\end{document}
Was liefert dir folgender Code? Copy + paste + save as josmosBiblatexUrldate.tex + compile!
[code]
\begin{filecontents}{\jobname.bib}
@misc{candida,
doi = {http://www.cbs.knaw.nl/collections/BioloMICS.aspx?Table= Yeasts species$\backslash$\%Name = Candida$\backslash$\%20sonorensis$\backslash$\&Fields = All$\backslash$\&ExactMatch = T}, title= {www.cbs.knaw.nl},
url = {http://www.cbs.knaw.nl/collections/BioloMICS.aspx?Table= Yeasts species\&Name= Candida sonorensis\&Fields= All\&ExactMatch= T},
urldate = {2014-10-04},
}
@article{Ilmen2013,
abstract = {blablabla.},
author = {Ilm\'{e}n, Marja and Koivuranta, Kari and Ruohonen, Laura and Rajgarhia, Vineet and Suominen, Pirkko and Penttil\"{a}, Merja},
file = {:home/josmos/.local/share/data/Mendeley Ltd./Mendeley Desktop/Downloaded/Ilm\'{e}n et al. - 2013 - Production of L-lactic acid by the yeast Candida sonorensis expressing heterologous bacterial and fungal lactate.pdf:pdf},
issn = {1475-2859},
journal = {Microbial cell factories},
number = {1},
pages = {53},
pmid = {23706009},
title = {{Production of L-lactic acid by the yeast Candida sonorensis expressing heterologous bacterial and fungal lactate dehydrogenases.}},
url = {http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3680033/?tool = pmcentrez\&report = abstract},
volume = {12},
year = {2013}
}
\end{filecontents}
\documentclass[12pt, ngerman,]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[backend=biber,style=authoryear,
natbib=true]{biblatex}
\addbibresource{\jobname.bib}
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map{
\step[fieldsource=url,
match=\regexp{\\_},
replace=\regexp{_}]
\step[fieldsource=url,
match=\regexp{\\&},
replace=\regexp{&}]
}
}
}
\DefineBibliographyStrings{ngerman}{andothers
=
{{et\,al\adddot}},
}
\renewbibmacro{\urlfield}[1]{\small \normalfont #1}
\begin{document}
paper \parencite{Ilmen2013}
webpage \parencite{candida}
\printbibliography
\end{document}
[/code]