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, german Kurzbeleg, which is the short reference in a citation in a continuous text, which I called here as partial citation 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!
For my academic writing I have to set the names of the authors like this example:
- Partial citation: (Surname, Name 2000, S. 1)
- Full reference: SURNAME, NAME, 2000. Title...
Code for above example:
\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}
How can I solve this task?
Thank you for your help and effort in advance!
\AtBeginBibliography{\renewcommand*{\mkbibnamefamily}{\textsc}}– moewe Jun 29 '18 at 11:04