Downloads


LaTeX Usage

To typeset an Irish document in LaTeX, simply add the lines

\usepackage[irish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
to the preamble and compile using LaTeX as usual. This sets the default language of the document to Irish. If you need to include some English passages, change the “babel” line above to:
\usepackage[english,irish]{babel}
and use \selectlanguage in the body of the document as follows:
\begin{document}
Tá sé thar a bheith éasca fleiscíní
a chur san áireamh anois.

\selectlanguage{english}
We don't talk no foreign talk
round these here parts.

\selectlanguage{irish}
Bainfidh mé úsáid as an acmhainn iontach seo.
\end{document}


Important Remarks