I have encountered a strange problem in a thesis, where I try to cite a book several times in the same paragraph, referring to different pages in the book. This results in the citations following the first is that only the page number is shown (as a simple number). Is there a (simple) way to force these citations to mimic the first?
MWE:
\documentclass[a4 paper,12pt]{report}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{times}
\usepackage[english]{babel}
\usepackage[
authordate,
backend=biber,
natbib,
maxbibnames=99,
]{biblatex-chicago}
\addbibresource{mybib.bib}
\usepackage{csquotes}
\begin{filecontents}{mybib.bib}
@BOOK{orton,
title = {Survey of English Dialects},
publisher = {Leeds: Arnold},
year = {1962},
author = {Orton, Harold},
volume = {IV},
date-added = {2014-04-20 12:50:04 +0000},
date-modified = {2014-04-24 18:41:22 +0000}
}
\end{filecontents}
\begin{document}
This is a quote \citep[117]{orton} . And then the second quote by the same person which results in the strange behaviour \citep[224]{orton}.
In the next paragraph the third quote compiles just like the second \citep[332]{orton}, and then a different kind of quote by Orton compiles like a dream \citeyearpar[340]{orton}. But the last one has the same problem as number two and three \citep[345]{orton}.
\printbibliography
\end{document}

biblatex-chicagofor information on this feature, the section about "ibidtracker=constrict". – pst Apr 27 '14 at 21:27