so I'm finishing up with my project and realized that I have to change the style of my citations to something like this:
% Biblatex {{{
\usepackage[
style=alphabetic,
backend=biber,
%backref=true
]{biblatex} % Biblatex mit alphabetischem Style und biber.
\addbibresource{\jobname.bib} % Dateiname der bib-Datei.
\DeclareFieldFormat*{title}{
\mkbibemph{#1}} % Make titles italics
% }}}
Which should produce something like this in the text:
Now I have been apparently working with a complete different solution which looks like this:
\documentclass[
fontsize=12pt,
headings=small,
parskip=half, % Ersetzt manuelles setzten von parskip/parindent.
bibliography=totoc,
numbers=noenddot, % Entfernt den letzten Punkt der Kapitelnummern.
%open=any, % Kapitel kann auf jeder Seite beginnen.
% final % Entfernt alle todonotes und den Entwurfstempel.
]{scrreprt}
\usepackage[
a4paper,
margin=2.54cm,
marginparwidth=2.0cm,
footskip=1.0cm
]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[german,ngerman]{babel}
%%gegen möchliche Warnmeldungen bezüglich underfull \hbox wenn in der *.bbl file zu lange URLs sind
\usepackage{etoolbox}
\apptocmd{\thebibliography}{\raggedright}{}{}
% % fuer Literaturverweise
\usepackage[numbers,square]{natbib}
\bibpunct{[}{]}{;}{a}{}{;} % Natbib konfigurieren, so da� im text [M�ller 2006] erscheint und keine runden Klammern o.�.
\renewcommand{\cite}{\citep} % \cite zu \citep umwandeln, so dass im Text \cite{Mueller.2006} f�r Referenzen verwendet werden kann.
%
% %% Verhindert, dass im Literaturverzeichnis nach der Nennung von [Mueller 2006] die Seite umgebrochen wird und die Autoren + Buchtitel etc. auf der n�chsten Seite landen
% %% Es wurde daher \noparagraphbreak in der natdin.bst bei der Ausgabe der Elemente erg�nzt
% %% siehe http://groups.google.de/group/de.comp.text.tex/browse_thread/thread/9ca4c681e2063fbd/f7eb3eec044b058e
\makeatletter
\def\noparagraphbreak{\interlinepenalty10000
\@itempenalty-\@highpenalty}
\makeatother
\begin{document}
\newpage
\begin{singlespace}
\chapter{Einleitung}
\label{chap:Einleitung}
\end{singlespace}
Some text \citep[S.27-29{Magnusson2007}.
\phantomsection % benötigt für korrekte pdf-darstellung
\addcontentsline{toc}{chapter}{Literaturverzeichnis}
\bibliographystyle{natdin} % Din 1505 nach Lorenzen (Das konkrete Aussehen des Litverzeichnisses ist im header festgelegt)
\interlinepenalty=10000 %sorgt dafür, dass Liteinträge nicht Seiten übergreifend sind
\bibliography{bibliography/library} % Pfad zur *.bib-Datei (Dateiendung wird weggelassen)
\end{document}
Which gives me citations in the text looking like this:
My problem is that I have tried to change it and simply use biblatex....but unfortunately I'm getting only errors....what am I missing? Maybe its important to mention that I've been using the \citep[S.27-29]{some citation} command like this and have tried to include the pages where to find specific citations....
Any help is appreciated :)


natbib, so you run BibTeX. With thebiblatexcode snippet you need to run Biber instead. See https://tex.stackexchange.com/q/154751/35864. A bit of background can be found in https://tex.stackexchange.com/q/25701/35864. You'll need to follow the steps in https://tex.stackexchange.com/q/5091/35864 if you want to usebiblatex. – moewe Mar 15 '18 at 16:07\citep(instead of\parencite) withbiblatexyou will also need to enable thenatbibcompatibility mode by addingnatbib=trueto thebiblatexloading options. – moewe Mar 15 '18 at 16:12natbibdoes not have a compatible alphabetic style. The documentation saysnatbibis for author-year and numeric citation and does not mention alphabetic citations. But you can switch tociteandalphastyle:\documentclass{scrartcl}\usepackage{cite}\bibliographystyle{alpha}\begin{document}Lorem~\cite{sigfridsson}.\bibliography{mybibfile}\end{document}I would, however, advise you to usebiblatexand Biber. If you install Biber via MikTeX's package manager there should be no problem. What did you try exactly and how did it not work? – moewe Mar 15 '18 at 17:10biber --versionin the command line? Have a look at https://tex.stackexchange.com/q/286706/35864. See also https://golatex.de/biblatex-gibt-fehlermeldungen-problem-mit-packageeinbindung-t18954.html – moewe Mar 15 '18 at 17:54