为什么我不能使用 babel 包?

为什么我不能使用 babel 包?

我在 Xubuntu 中使用 TexMaker。我写了以下几行:

\documentclass{article}
%
\title{Os devaneios da pós-graduação de Luís Muniz}
\author{Luís Augusto Muniz Telles}
\date{\today}
\usepackage[portuguese]{babel}
%
\begin{document}
\maketitle
%
"Paulo batista mito"
\end{document}

当我单击按钮进行编译时,出现以下错误:

#"Package babel error: unknown option 'portuguese'. Either you mispelled it  
 (babel)      or the language definition file portugues.ldf was not found."

我已经尝试了选项portugesbrazilian并且brazil它给出了同样的错误。

笔记:我刚刚安装了 TexMaker 并尝试了一下。

答案1

从我的评论到正确的答案。:)

这看起来像是 TeX 安装中缺少依赖项。运行

$ sudo apt-get install texlive-lang-portuguese

在终端(或通过软件中心安装相同的包)将安装葡萄牙语支持,babel并且希望代码能够起作用。:)


此外,文档的格式应为

\documentclass{article}

\usepackage[T1]{fontenc} % to have good hyphenation
\usepackage[utf8]{inputenc} % accented characters in input
\usepackage[portuguese]{babel}
%
\title{Os devaneios da pós-graduação de Luís Muniz}
\author{Luís Augusto Muniz Telles}
\date{\today}
%
\begin{document}
\maketitle
%
``Paulo batista mito''
\end{document}

相关内容