I want to change my current bibsytle to mla but it won't work:
\usepackage[numbers]{natbib}
\begin{document}
\bibliography{test-bib.bib}
\bibliographystyle{dinat}
This my text \citep{Saussure1995} text
\end{document}
I tried the following by using TeXnixCenter but it won't work:
\usepackage{csquotes}
\usepackage[style=mla,backend=biber]{biblatex}
\addbibresource{test-bib.bib}
\begin{document}
This is a citation. \autocite{Saussure1995}. Another citation \autocite{Kavanaugh1976}
\printbibliography
\end{document}
natbibtobiblatexyou need to make sure of two things: first, remove all your auxiliary files, and second you need usebiberto process the bibliography, and notbibtex. TeXnixCenter doesn't look at your source file to decide which tool to use, so havingbackend=biberdoesn't tell the editor to use it. So you need to tell TeXnixCenter to userbiberinstead ofbibtexfor this document. See \usepackage[backend=biber]{biblatex} does not work, backend=bibtex works for details on how to do this. – Alan Munn Oct 24 '15 at 17:01biblatex-mlapackage has not been updated since 2013;biblatexhas progressed a bit since then, so expect some rough edges. It also lacks some commands one normally expectsbiblatexstyles to implement (most notably\textcite, it also has trouble with\footciteand certain entry types; though I gather that both of these were more or less by design). (I also doubt that MLA is a drop-in replacement ofdinat.bst, maybe you could choose another style, especially if you expect to have to do some modifications.) – moewe Oct 24 '15 at 18:24