I am trying to type the word Łojasiewicz. What is the proper command to code the polish character Ł?
Thank you for your help.
I am trying to type the word Łojasiewicz. What is the proper command to code the polish character Ł?
Thank you for your help.
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}
If you're using XeLaTeX or LuaLaTeX you don't need the inputenc packages as they are unicode enabled by default.
For example, you can type:
Łojasiewicz
\bye
and use the command csplain or pdfcsplain to process the document.
\Ltoo. – Dec 14 '17 at 14:59\Lis defined even in plain TeX. – David Carlisle Dec 14 '17 at 15:12fontspecpackage, you can simply paste the character directly from a Unicode character map. – Dec 14 '17 at 15:23