Bei allen `biblatex`-Stilen, die ich je verwendet habe, macht `biblatex` das gewünschte schon von sich aus, wenn man das **Datum** einer Online-Quelle(`@online`-Datenbank-Eintrag) bei `urldate` **im richtigen Format** angibt: YYYY-MM-DD. Dieses Format gilt übrigens für *alle* Datumsfelder von `biblatex`. Bei Deinem jetzigen Format (DD.MM.YYYY) gibt biber beim Kompilieren folgende Warnung aus:
> WARN - Datamodel: Entry
> 'xyz.10.07.2014' (test.bib): Invalid
> format '19.12.2014' of date field
> 'urldate' - ignoring
Beim Typ `@misc` funktioniert es auch, aber ich würde den Typ dennoch ändern:
- **misc** A fallback type for entries which do not fit into any other category. Use the field `howpublished` to supply publishing information in free format, if applicable. [...]
- **online** An online resource. [...] This entry type is intended for sources such as web sites which are intrinsically online resources. Note that all entry types support the url field. For example, when adding an article from an online journal, it may be preferable to use the `@article` type and its url field.
Kurzes Beispiel:
\documentclass{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[style=numeric-comp]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{xyz.10.07.2014,
author = {Max Misc},
editor = {{Max}},
year = {2014},
title = {{Max auf seinen Reisen}},
url = {https://www.google.de},
urldate = {2014-12-19} % <<<<<<<<<<
}
@online{abx.10.07.2014,
author = {Max Online},
editor = {{Max}},
year = {2014},
title = {{Max auf seinen Reisen}},
url = {https://www.google.de},
urldate = {2014-12-19} % <<<<<<<<<<
}
\end{filecontents}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
![alt text][1]
Modifikationen kann man z.B. mit `\DeclareFieldFormat[<Typ>]{<Feld>}{<Code>}` vornehmen:
\documentclass{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[style=numeric-comp]{biblatex}
\addbibresource{\jobname.bib}
\DeclareFieldFormat[online]{title}{\emph{#1} [online]}
\DeclareFieldFormat[online]{url}{Verf\"ugbar unter: \texttt{#1}}
\DeclareFieldFormat[online]{urldate}{[#1]}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{xyz.10.07.2014,
author = {Max Misc},
editor = {{Max}},
year = {2014},
title = {{Max auf seinen Reisen}},
url = {https://www.google.de},
urldate = {19.12.2014} {2014-12-19} % <<<<<
}
@online{abx.10.07.2014,
author = {Max Online},
editor = {{Max}},
year = {2014},
title = {{Max auf seinen Reisen}},
url = {https://www.google.de},
urldate = {2014-12-19} % <<<<<
}
\end{filecontents}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
![alt text][2]
[1]: http://texwelt.de/wissen/upfiles/online.png
[2]: http://texwelt.de/wissen/upfiles/online_1.pnghttp://texwelt.de/wissen/upfiles/online_2.png