[Tex/LaTex] How to type the letter Ł

characters

I am trying to type the word Łojasiewicz. What is the proper command to code the polish character Ł?

Thank you for your help.

Best Answer

The traditional markup (going back to plain TeX) is \L in current releases you can simply use Ł

\documentclass{article}

\begin{document}

Ł 

\end{document}

Prior to the 2018 LaTeX release you would need to explicitly load inputenc as shown below to be able to enter it as is. fontenc makes it one character but is not necessary to input it (it'll get displayed by a character "L" and an overlapping dash without fontenc). As noted in the comments \L is the underlying macro that is used for the character, so you could also use \L in every occurrence of Ł.

\documentclass[]{article}

\usepackage[utf8]{inputenc}
%\usepackage[T1]{fontenc}

\begin{document}
Ł
\end{document}

Without fontenc:enter image description here

With fontenc:enter image description here

If you're using XeLaTeX or LuaLaTeX you don't need the inputenc packages as they are unicode enabled by default.

Related Question