The following document will not compile (using xelatex, biber) if the package gb4e is activated. If you comment out the gb4e package it works fine:
\documentclass{article}
\usepackage{fontspec}
\setromanfont{Times New Roman}
% \usepackage{gb4e} % <-- FAILS WITH THIS PACKAGE ACTIVATED
\usepackage[nopar]{lipsum} % for dummy text
\usepackage[american]{babel}
\usepackage[authordate,isbn=false,backend=biber]{biblatex-chicago}
\begin{filecontents}{\jobname.bib}
@book{Saussure1995,
Author = {Ferdinand de Saussure},
Origyear = {1916},
Publisher = {Payot},
Title = {Cours de Linguistique Générale},
Year = {1995}}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\section*{Les Présentations}
\lipsum[1] \autocite{Saussure1995}
\printbibliography
\end{document}
Any help would be greatly appreciated.
gb4eafterbiblatexfixes the problem, at least with the MWE. – egreg Mar 07 '13 at 13:50\noautomathjust after loadinggb4e, which disables the special usage of_that, I believe, is responsible for the incompatibility. – egreg Mar 07 '13 at 14:20Saussure_1916. – Michael Dunn Mar 07 '13 at 14:23