File: test-babel.tex

package info (click to toggle)
texlive-lang 2012.20120611-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 531,364 kB
  • sloc: perl: 29,862; ansic: 3,234; sh: 1,324; makefile: 1,291; python: 824; ruby: 576; lisp: 485; awk: 431; sed: 138; xml: 57; cs: 2
file content (59 lines) | stat: -rw-r--r-- 1,837 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
% Copyright 2003-2005 Han The Thanh <hanthethanh@gmx.net>.
% This file is part of vntex.  License: LPPL, version 1.3 or newer,
% according to http://www.latex-project.org/lppl.txt

\documentclass[openany]{book}
\IfFileExists{ucs.sty}
{\usepackage{ucs}        % only needed when utf8x input encoding is being used 
  \usepackage[utf8x,utf8]{inputenc}}
{\usepackage[utf8]{inputenc}}
                                    % inputenc must be loaded explicitly
                                    % with options `utf8x' and `utf8' since
                                    % we test both inputencodings
                                    % simultaneously
\usepackage[vietnam,english]{babel}

\usepackage{multicol}   % needed for testing accent commands
\usepackage[colorlinks]{hyperref} % let's try vietnamese with hyperref
\input{pd1supp.def}     % supplement for characters missing in PD1 encoding
                        % (used for PDF bookmarks) 

\begin{document}
\selectlanguage{vietnam}
\title{\bfseries Test of Vietnamese support for \LaTeX{} using \texttt{babel}}
\author{H\`an Th\'\ecircumflex{} Th\`anh}
\maketitle

\tableofcontents
\listoffigures

\chapter{Test input encodings}
\section{Test of VISCII encoding support}
\inputencoding{viscii}
\input{test-viscii}

\section{Test of TCVN encoding support}
\inputencoding{tcvn}
\input{test-tcvn}

\section{Test of UTF8 encoding support}
\inputencoding{utf8}
\input{test-utf8}

\IfFileExists{ucs.sty}{%
\section[Test of UTF8x encoding support]
   {Test of UTF8x encoding support (of the Unicode package)}
\inputencoding{utf8x}
\input{test-utf8}
}{\typeout{^^JWARNING: File ucs.sty not found, skipping test.^^J}}

\clearpage
\appendix

\chapter{Test of Vietnamese captions}
\input{test-captions}

\chapter{Test of accent commands for T5 encoding}
\input{test-accents}

\end{document}