I've got lots of articles, and normally I use the @book type to put them to my references because I don't like the look of the article type. But right now I think that's a bit to botchy like I am doing it.
So my question, is there an easy way to tweak the @article type instead of creating an own on.
For example, that is how it looks like when I am using @article type.
@article{Mooney.1940,
author = {Mooney,M.},
title = {A Theory of Large Elastic Deformation},
journal = {Journal of Applied Physics},
volume = {11},
number = {9},
pages = {582-592},
year = {1940},
}
And that is how I want it to look like.
As you can see there is quite a bit of change to it.
I add a minimal example with the settings I've already changed in my bibliography.
\documentclass[12pt]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{lmodern}
\usepackage{csquotes}
\begin{filecontents}{Literatur.bib}
@article{Mooney.1940,
author = {Mooney,M.},
title = {A Theory of Large Elastic Deformation},
journal = {Journal of Applied Physics},
volume = {11},
number = {9},
pages = {582-592},
year = {1940},
}
\end{filecontents}
\usepackage[backend=biber,bibencoding=utf8,]{biblatex}
\addbibresource{Literatur.bib}
%comma instead of point
\renewcommand*{\newunitpunct}{\addcomma\space}
\usepackage[colorlinks=true]{hyperref}
\begin{document}
Test \cite[S.7]{Mooney.1940}
\printbibliography[title=Literaturverzeichnis]
\end{document}



\bibstring{jourvol}. If you insist on "Bd.", add\DefineBibliographyStrings{german}{jourvol = {Bd\adddot}}to the preamble. – moewe May 24 '21 at 11:59