在 Bibtex 中使用 URL 时出现“未定义引用”

在 Bibtex 中使用 URL 时出现“未定义引用”

我试图在 Latex 报告中引用一个网页,但在编译过程中总是失败。这是我的.tex

\documentclass[a4paper,10pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{url}
\usepackage[spanish]{babel}

% Commandes personnalisées

\title{My lovely test}
\author{Me}
\date{10/23/13}

\begin{document}
\maketitle
I love to use Google\cite{google}

\bibliographystyle{ieeetr-fr}
\bibliography{bibliography.bib}
\end{document}

和我的。围兜

@misc{
google,
Author={Google},
Howpublished={\url{http://www.google.com}},
Title={Google what else}
}

但是在编译时,出现此错误:

l.1 \begin{thebibliography}{1} [1] ! 未定义控制序列。 l.6 ...eauteurs\bgroup Google\egroup\egroup{}, \og Google what else\fg{}。 ! 未定义控制序列。 l.6 ...le\egroup\egroup{}, \og Google what else\fg {}。 (/usr/share/texmf-dist/tex/latex/base/t1cmtt.fd)) [2] (./test.aux)

我的代码有什么问题?

答案1

正如名称所示,ieeetr-fr它是 IEEE 样式的改编版,用于法语。因此,它硬编码了一个假设,该假设babel已加载,并带有french定义选项,例如\fg。您需要babel适当加载或使用其他样式(例如标准 IEEE 样式)。

相关内容