GeneralPolish 'l'?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
beoram
Posts: 19
Joined: Tue Jul 29, 2008 6:19 pm

Polish 'l'?

Post by beoram »

I've looked through The Comprehensive LATEX Symbol List and the TIPA manual, but I can't find the Polish 'l' (in Unicode: ł ).

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Polish 'l'?

Post by Stefan Kottwitz »

Hi beoram,

you could use the ł directly within your code if you load inputenc. Try this example:

Code: Select all

\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\begin{document}
Polish: Ł ł
\end{document}
If you are using Windows write latin1 instead of utf8 as option for inputenc.

Stefan
LaTeX.org admin
beoram
Posts: 19
Joined: Tue Jul 29, 2008 6:19 pm

Re: Polish 'l'?

Post by beoram »

Thanks, I'm not really sure about using Unicode in Latex.

But I did find that the commands

\l{} \L{}

produce the Polish ł Ł
Post Reply