maybe I am just a clod, but really I cannot make the bibliography to be in the author-year style with TextPad. It always deliver the same numeric style. This is my code (sorry if there is alot stuf that does not matter, but I am not sure if there is some inconsistency with other portions of the code):
\documentclass[12pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[autostyle,italian=guillemets]{csquotes}
\usepackage[backend=biber]{biblatex}
\usepackage[style=authoryear-comp]{biblatex}
\addbibresource{bibliography.bib}
\begin{document}
\cite[5]{Dowe:1996}\\
\\
\cite{Dummett:2004}
\printbibliography
\end{document}
And instead of an authoryear bibliography I get this:
What can I do in order to obtain something like "Dowe (1996)", without the square brackets and with the normal brackets? And what can I do in order to have a author-year bibliography instead that a numeric one?
Thank you in advance!


author-year-compstyle. Could you post a full compilable code? – Bernard Nov 04 '17 at 01:01latex->biber->latex? Another thing, you are loading biblatex twice. Call it just once with all your options, like:\usepackage[backend=biber,style=authoryear-comp]{biblatex}. In general, it might help to take a look at https://tex.stackexchange.com/a/63875/105447. – gusbrs Nov 04 '17 at 01:13