なぜ 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."

すでにオプション と を試しましたがportuges、同じエラーが発生します。brazilianbrazil

注記: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}

関連情報