我有以下使用 pdflatex 编译的代码
\documentclass[12pt,brazil]{article}
% options include 12pt or 11pt or 10pt
% classes include article, report, book, letter, thesis
\usepackage{graphicx}
\usepackage[portuguese]{babel}
\title{MEA Lista 6}
\author{Jo\~ao Guilherme Ferreira Campos}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\textwidth]{plot6.eps}
\label{1a}
\end{figure}
\end{document}
但数字没有显示出来,而是出现了一个引号。它给出了一个过满警告
Overfull \vbox (12.0pt too high) has occurred while \output is active (./exam.aux) )
但我不确定它与问题有什么关系。我注意到了一些奇怪的事情。
a) 如果我向文档中添加文本,则会出现图形,但在另一篇包含文本的文章中会显示相同的错误,我想了解这里出现错误的原因,以便能够在其他文件中纠正它。
b) 如果我注释掉 \usepackage[portuguese]{babel},则会出现该图,但我需要该图的标签为葡萄牙语。因此,我需要 babel 包。
谁能告诉我发生了什么事?
编辑
我通过添加包来纠正错误
\usepackage[T1]{fontenc}