Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I use combination of inputenc package (originally using 'latin2' encoding, but using 'utf8' encoding gives the same error) and fontenc package with T1 font encoding for writing LaTeX.

This combination gives strange bug when using 'Ł' or 'ł' (lslash) inside fragile frame.

Example code:

\documentclass{beamer}

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

\begin{document}
\begin{frame}
  \frametitle{Non-fragile frame}
  Łł
\end{frame}
\begin{frame}[fragile]
  \frametitle{Fragile frame}
  Łł
\end{frame}
\end{document}

Compiling this document with LaTeX or PDFLaTeX gives the following error:

[1] (./beamer-test.vrb
! Undefined control sequence.
l.2   \T
        1\L \T1\l
?

Replacing ł with \l (or {\l}, or \l{}) generates correct output without any errors. In original 'latin2' (iso-8859-2) 8bit encoding there were no problems with any other Polish character, only with ł.


tetex-3.0-9.FC4
pdfeTeX 3.141592-1.21a-2.2 (Web2C 7.5.4)
beamer 3.01
fontenc 2004/02/22 v1.99f
inputenc 2004/02/05 v1.0d

share|improve this question
5  
you have a really old TeX installation. With current TeXLive2011 there is no problem. You should update at least beamer. – Herbert Nov 19 '11 at 13:07
Thanks a lot. Well, installing beamer requires installing pgfcore... – Jakub Narębski Nov 19 '11 at 13:13
1  
c'est la vie ... – Herbert Nov 19 '11 at 13:14
1  
@JakubNarębski The example worked for me too. Please tell us in a comment if updating solved it. We would close this question then. – Stefan Kottwitz Nov 19 '11 at 13:27
@Herbert, @Stefan: Updating beamer (and installing pgf), or rather installing it locally to ~/texmf fixed the issue. Thanks. – Jakub Narębski Nov 19 '11 at 15:06
show 1 more comment

closed as too localized by Alan Munn, Martin Scharrer Nov 19 '11 at 18:54

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.