包 inputenc 错误无法理解

包 inputenc 错误无法理解

我有一个错误,我完全不明白:它来自这篇文章,我试图从中包含参考:

https://pubs.acs.org/doi/10.1021/jp993642l

(inputenc)                not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.1158 ...benzene, naphthalene, and anthracene: 
                                                   crossed and
You may provide a definition with
\DeclareUnicodeCharacter 

[134] [135] [136]) [137] (./output.aux (./Titlepage.aux) (./Kurzzusammenfassung.aux) (./Acronyms_defs.aux) (./Own_publications.aux) (./Chapters/Introduction.aux) (./Chapters/Chapter_1.aux) (./Chapters/Chapter_2.aux) (./Chapters/Chapter_3.aux) (./Chapters/Chapter_3bis.aux) (./Chapters/Chapter_4.aux) (./Chapters/Chapter_5.aux) (./Chapters/Chapter_6.aux) (./Chapters/Conclusion.aux))
Package rerunfilecheck Info: File `output.out' has not changed.
(rerunfilecheck)             Checksum: D41D8CD98F00B204E9800998ECF8427E;0.
 ) 

我自己添加参考:

@article{gonzalez_quantum_2000,
author = {Gonzalez, Carlos and Lim, Edward C.},
title = {A Quantum Chemistry Study of the van der Waals Dimers of Benzene, Naphthalene, and Anthracene:  Crossed and Parallel-Displaced Dimers of Very Similar Energies in the Linear Polyacenes},
journal = {The Journal of Physical Chemistry A},
volume = {104},
number = {13},
pages = {2953-2957},
year = {2000},
doi = {https://pubs.acs.org/doi/10.1021/jp993642l},
}

我不知道它无法理解的unicode字符是什么,我看不到...谢谢你的帮助!

最佳,A.

答案1

您仅显示了错误消息的最后一部分,而省略了报告字符的主要部分。

\documentclass{article}

\begin{document}

and Anthracene:  Crossed

\end{document}

生产

! LaTeX Error: Unicode character   (U+2009)
               not set up for use with LaTeX.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.5 and Anthracene: 
                       Crossed
? h
You may provide a definition with
\DeclareUnicodeCharacter 
?

:在换行符标记后的位置有一个 U+2009(细空格) 。

\documentclass{article}

\begin{document}

and Anthracene: Crossed

\end{document}

运行无错误

相关内容