This question continous my other.
Note: My english isn't that good. My native english is german. I don't know the correct definition of german wissenschaftliche Ausarbeitung, which I called here as academic writing and german Langbeleg, which is the full entry in the bibliography at the end of the written work, which I called here as full reference. I also couldn't find a correct translation of this definitions. So I someone has the experience with it, so please edit this question in the correct manner. Sorry for the inconvenience and thank you!
- The parentheses
()around the year in the full reference of my academic writing are not allowed. - In front of the year should be a comma, like this example:
Full reference: SURNAME, NAME, 2000. Title...
MWE:
\documentclass[ngerman]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{
babel,
csquotes
}
\usepackage[
backend = biber,
sortlocale = auto,
sorting = nty,
style = authoryear-comp
]{biblatex}
\begin{filecontents}{\jobname.bib}
@book{
Sur,
author = {Surname, Name},
title = {Title},
year = {2000},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Test \autocite[1]{Sur}.
\printbibliography
\end{document}
The result:
How can I implement this things?
Thank you for your help and effort in advance!

\MakeUppercase, do yourself and your readers a favour and use\textsc:\AtBeginBibliography{\renewcommand*{\mkbibnamefamily}{\textsc}}– moewe Jun 29 '18 at 09:35