I have a problem with my bibliography. I took a look but I couldn't find any solution. The thing is: When citing something with a page range, I use a short dash, but when biblatex sorts a page range in my bib entry the dash is long even if in my bibentry I typed if short. So at the end I get two dashes, a short one made by me and a long one made by biblatex. I would like to have just short dashes.
Any ideas?
Here's the MWE
% !TEX TS-program = XeLaTeX
% !TEX encoding = UTF-8 Unicode
\begin{filecontents}{archivio.bib}
@article{Stu:Pat,
Author = {Despina Stratoydaki-White},
Date-Added = {2015-11-18 12:39:01 +0000},
Date-Modified = {2015-11-18 12:40:01 +0000},
Journal = {The Greek Orthodox Theologica Review},
Number = {2},
Pages = {195-205},
Title = {Patriarch Photios - A Christian Humanist},
Volume = {25},
Year = {1980}}
\end{filecontents}
\documentclass[11pt, twoside]{book} %openany
\usepackage{polyglossia}
\setmainlanguage[babelshorthands=true]{italian}
\setotherlanguages{latin, english, french}
%%% bibliografia
\usepackage[babel,italian=guillemets]{csquotes}
\usepackage[ style=verbose-trad2,
language=italian,
useprefix=true,
firstinits=true,
backend=biber,
]{biblatex}
\addbibresource{archivio.bib}
\begin{document}
\cite[197-198]{Stu:Pat}
\end{document}