Warum erstellt du kein Minimalbeispiel?
\begin{filecontents}{\jobname.bib}
@book{
se_reference,
author = "John A McDermid",
title = "Software Engineer's Reference Book",
year = "1991",
publisher = "Elsevier",
address = "Oxford"
}
@misc{
npmjs_suitest,
title="suitest",
url="https://www.npmjs.com/package/suitest",
note = {Eingesehen am 13.04.2015}
}
\end{filecontents}
\documentclass{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage[left=3cm,right=3cm,top=2cm,bottom=2cm,includeheadfoot]{geometry}
\usepackage{csquotes}
\usepackage[backend=biber,
style=authoryear,
]{biblatex}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{npmjs_suitest}
\cite{se_reference}
\nocite{ctan,companion,aristotle:physics,westfahl:space}
\printbibliography
\end{document}
Schaue ich mir die verlinkte Seite an, sehe ich nicht nur einen Autor und ein Veröffentlichungsjahr, ich sehe auch den Link zum Entwicklungsrepository. Dort wird suitest allerdings als obsolet bezeichnet.
\begin{filecontents}{\jobname.bib}
@book{
se_reference,
author = "John A McDermid",
title = "Software Engineer's Reference Book",
year = "1991",
publisher = "Elsevier",
address = "Oxford"
}
@software{
suitest,
author={Alexander Guinness},
year={2012},
title="Suitest",
version={0.1.0},
url={https://github.com/monolithed/Suitest},
urldate={2015-04-13},
}
\end{filecontents}
\documentclass{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage[left=3cm,right=3cm,top=2cm,bottom=2cm,includeheadfoot]{geometry}
\usepackage{csquotes}
\usepackage[backend=biber,
style=authoryear,
]{biblatex}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\DeclareFieldFormat[misc]{title}{\textbf{#1}}
\begin{document}
\cite{suitest}
\cite{se_reference}
\nocite{ctan,companion,aristotle:physics,westfahl:space}
\printbibliography
\end{document}