Typos
[latex2e.git] / trunk / required / babel / testfiles / tlb2771.lvt
blobc80c05880f21991abc13d7754d1f217aa8574724
1 % test file for PR 2771
2 % Description of bug:
4 % This bug report relates to the report babel/2643 given from Juergen
5 % Schlegelmilch on Wed, 15 Oct 1997. However, the example given here is
6 % much simpler and it shows two new aspects:
7 % 1) the bug occures not only in the preamble of a document
8 % 2) Using \ref in an argument to \ifthenelse makes active dq working
10 % The problem occured when going over from babel v3.5c to v3.6h
11 % in conjunction with ifthen (changed at the same time from v1.01 to
12 % v1.0m). 
14 \input{test2e}
15 \documentclass[german]{article}
17 \START
18 \FORMAT{LaTeX2e<1996/12/01>}
19 \CLASS[german]{article}
20 \PACKAGE{babel}
21 \PACKAGE{ifthen}
23 \OMIT
24 \usepackage{babel}
25 \usepackage{ifthen}
27 \def\testit#1{%
28   \setbox0=\hbox{#1}\showbox0}
29 \begin{document}
30 \TIMO
31 \showboxbreadth=30
32 \showboxdepth=30
34 %\section{Example}
35 \label{label}
37 %This is a text with umlauts: 
38 \testit{"a, "o, "u}% -- works.
40 \ifthenelse{1=1}{
41 %This is a text with umlauts:
42 \testit{"a, "o, "u}% -- doesn't work.
44 Reference \ref{label}.
46 %This is a text with umlauts: 
47 \testit{"a, "o, "u}% -- works again.
51 \end{document}