I am writing my master thesis and started to work with biblatex. It is definitely easier than bibtex. I discovered that there is a special online type for websites and I wanted to use it, because I use quite some websites.
I want to list the websites in the following style:
Author, "Title", note, (date), URL, (URLdate)
Because of this I use the IEEE style and change it when there is a dot, but I can´t get a comma after the author and after the website.
Wich is
Author. "Title". note, (date), URL, (URLdate)
I tried to add the comma with the following, but this doesn´t work.
\DeclareFieldFormat[online]{tile}{\enquote{#1}\addcomma}
\DeclareFieldFormat[online]{author}{#1\addcomma}
Till now I used the type misc for websites, thats why i included it in my example code
\documentclass[12pt,a4paper,oneside,numbers=noenddot]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[ngerman]{babel}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[hyphens]{url}
\usepackage[backend=biber,style=ieee,dashed=false]{biblatex}
\addbibresource{frage.bib}
\stdpunctuation
\DeclareFieldFormat[online]{note}{#1\addcomma}
\DeclareFieldFormat[misc]{date}{(#1)\addcomma}
\renewcommand*{\finentrypunct}{}
\DeclareFieldFormat[online]{tile}{\enquote{#1}\addcomma}%does not work
\DeclareFieldFormat[online]{author}{#1\addcomma}%does not work
\begin{filecontents}{frage.bib}
@online{test,
author = {{Internationales Elektrotechnisches Wörterbuch}},
title = {{Definition Verriegelung}},
year = {2017},
url = {https://www2.dke.de/de/Online-Service/DKE-IEV/Seiten/IEV-Woerterbuch.aspx#},
urldate = {2020-09-23},
note = {IEV-Nr. 395 -07-120},
}
@misc{IEVVerriegelung,
author = {{Internationales Elektrotechnisches Wörterbuch}},
title = {{Definition Verriegelung}},
date = 2017,
url = {https://www2.dke.de/de/Online-Service/DKE-IEV/Seiten/IEV-Woerterbuch.aspx#},
urldate = {2020-09-23},
note = {IEV-Nr. 395 -07-120},
}
\end{filecontents}
\begin{document}
\cite{test} \cite{IEVVerriegelung}
\printbibliography[title=Literaturverzeichnis]
\end{document}


titlenottile. Is it interesting that if one removes[online]then the changes does apply tomiscbut notonline, why isonlinedifferent – daleif May 03 '21 at 13:19\DeclareNameFormat[online]{author}...– Ulrike Fischer May 03 '21 at 13:52misc– nogoo May 03 '21 at 14:36\DeclareNameFormat[online]{author}...than i getfamily=Internationales ElektrotechnischesWörterbuch, familyi=I.,which has probely something to do with Biblatex 3-3 name formatting
– nogoo May 03 '21 at 14:46