I am struggling to find the right settings of biblatex for my use case. Given the following entry in the .bib file
@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
}
I would like to have the following Output for \footcite[Vgl.][12--15]{einstein}
Vgl. Einstein (1905), S. 12 ff.
and an corresponding entry in the bibliography as follows
Einstein, A. (1905): Zur Elektrodynamik bewegter Körper, in: Annalen der Physik, Jg. 322 (10), S. 891-921.
I tried using authoryear as style and authoryear-ibid as citestyle (ibid is necessary) and they come close but I have to follow really strict specifications, so I need to change these styles. Unfortunately I have absolutely no idea where to start as this is my first time using biblatex. I looked for a solution in other threads but they all seem to be really specific to the respective problem so I can't seem to find a "general way" to change citation styles.
If anyone could tell me if there is an easy solution or point me to a tutorial where I can learn how to write or change styles that would be great!
Edit: Minimal working sample: sample.tex:
\documentclass[a4paper,12pt,oneside]{article}
\usepackage[ngerman]{babel}
\usepackage[
backend=biber,
style=authoryear,
citestyle=authoryear-ibid,
]{biblatex}
\addbibresource{sample.bib}
\begin{document}
Random sentence.\footcite[Vgl.][12--15]{einstein}
\printbibliography
\end{document}
sample.bib:
@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
}
