参考书目中出现“缺少 $ 插入”错误,没有下划线

参考书目中出现“缺少 $ 插入”错误,没有下划线

当我编译论文时出现以下错误:

Underfull \hbox (badness 1264) in paragraph at lines 61--61
[]\T1/ppl/m/n/12 ^^U^^U^^U.^^P  Naples 2008, or, the Waste Land: Trash, Citizenship, and an Ethic of
[106]
! Missing $ inserted.
<inserted text> 
            $
l.61 

这发生在 latexmk 中,或者在我运行 biber 后发生在 pdflatex 中。报告相同错误的其他发帖者经常将其归咎于 bibtex 条目中的下划线,但这显然不是这种情况:

@ARTICLE{iovino2009naples,
  author = {Iovino, Serenella},
  title = {Naples 2008, or, the Waste Land: Trash, Citizenship, and an Ethic of Narration},
  journaltitle = {Neohelicon},
  year = {2009},
  date = {2009-09},
  volume = {36},
  issue = {2},
  pages = {335--346},
  doi = {http://dx.doi.org/10.1007/s11059-009-0004-6},
  url = {http://www.springerlink.com/index/10.1007/s11059-009-0004-6},
  file = {iovino2009naples.pdf:iovino2009naples.pdf:PDF},
  pdf = {iovino2009naples.pdf}
}

发生了什么事?我该怎么办?

[编辑] 以下是所要求的 MWE:

\documentclass[12pt, a4paper, twoside, openright, draft]{book}
\usepackage{hyperref}
\usepackage[style=mla,mladraft=true,backend=biber,bibencoding=utf8]{biblatex}
\bibliography{../bibtex/workscited.bib}
\begin{document}
\autocite{iovino2012wilderness}
\printbibliography
\end{document}

iovino2012wilderness 条目的位置为:

@INBOOK{iovino2012wilderness,
  author = {Iovino, Serenella},
  title = {The Wilderness of the Human Other: Italo Calvino's 'The Watcher' and a Reflection on the Future of Ecocriticism.},
  booktitle = {The Future of Ecocriticism},
  year = {2012},
  date = {2012},
  editor = {Serpil Oppermann, Ufuk \"{O}zda\breve{g}, Nevin \"{O}zkan and Scott
    Slovic},
  urldate = {2012-12-09},
  file = {iovino2012wilderness.pdf:iovino2012wilderness.pdf:PDF},
  pdf = {iovino2012wilderness.pdf},
  shorttitle = {The Wilderness of the Human Other}
}

这仍然会产生错误:

Missing $ inserted \end
You can't use `\spacefactor' in math mode \end
Missing $ inserted \end

答案1

这一项是由于\breve{g}。消除它可以让我编译文档。我正在使用\u{g}

相关内容