Featured Post
We've moved to tex.my!
It’s been great writing on Blogger.com, but we’ve decided to move to a new platform, thanks to some valuable help from a great, great friend...
Thursday, August 26, 2010
Writing Systems and Calligraphy of the World
This post has nothing to do with LaTeX, but if you’ve enjoyed using LaTeX, I think you’ll enjoy reading about this very well-researched write-up about the various writing systems (scripts) (Part 1) (Part 2). Simply beautiful.
Friday, August 20, 2010
Tamil and Hindi Support in LaTeX
Doing a post on typesetting Tamil and Hindi is only natural after sorting out Jawi and CJK! Just after I managed to get them working using the
(These instructions are LaTeX-only; I’ve not dabbled much in XƎLaTeX.)
Using
Say I have the following file
Process it with
Then run
Hold on! How’d you know you needed to type
I peeked at the transliteration map files ☺. For example, tamil.ps for the Tamil transliteration, dvng.ps for the Hindi (devanagari) transliteration, etc. If your LaTeX set up doesn’t install these files by default, you can download the package source
itrans
package and the devanagari
fonts, this exact question was asked on the TeX-LaTeX Stack Exchange site, to which I posted what worked for me. So this post is essentially a re-write of my answers there.(These instructions are LaTeX-only; I’ve not dabbled much in XƎLaTeX.)
Installation on Ubuntu (TeXLive)
This one’s easy. Grab theitrans
and itrans-fonts
packages for Tamil, and also the texlive-lang-indic
package for the Hindi fonts via synaptic (or apt-get).Installation on Windows XP (MikTeX)
Grab thedevanagari
package using MikTeX’s Package Manager. As for itrans
, since it’s not packaged properly in MikTeX, so we’ll need to install it manually. Download itrans53-win32.zip
from CTAN. After unzipping the contents (say C:\itrans53\
), assuming <texmf>
being your local TEXMF
tree,- Move the contents of the
lib
folder into<texmf>\tex\latex\itrans
- Move the contents of the
fonts
folder into the appropriate locations, i.e. *.mf
in<texmf>\fonts\source\itrans
*.afm
in<texmf>\fonts\afm\itrans
*.tfm
in<texmf>\fonts\tfm\itrans
*.pfb
,*.pfa
,*.pfm
in<texmf>\fonts\type1\itrans
*.ttf
in<texmf>\fonts\truetype\itrans
*.fd
in<texmf>\tex\latex\itrans
- Refresh the file name database (e.g. via MikTeX Options/Settings)
Using itrans
itrans
doesn’t let you type in Tamil or Hindi (or Marathi, Sanskrit, Telugu and Gujarati) directly, rather you have to key in the ASCII transcription, then process it with itrans
from the command prompt, then run (pdf)latex
on the resultant file.Say I have the following file
indic-pre.tex
:\documentclass[11pt]{article}
\usepackage[preprocess]{itrans}
\newfont{\tmlb}{wntml12}
\newfont{\tmls}{wntml10}
\newfont{\devnf}{dvng10 scaled \magstep1}
#tamilifm=wntml.ifm
#tamilfont=\tmlb
#hindiifm=dvng.ifm
#hindifont=\devnf
\begin{document}
Thank you!
{#tamil na^nRi #endtamil}
{#hindi dhanyavaad #endhindi}
\end{document}
\usepackage[preprocess]{itrans}
\newfont{\tmlb}{wntml12}
\newfont{\tmls}{wntml10}
\newfont{\devnf}{dvng10 scaled \magstep1}
#tamilifm=wntml.ifm
#tamilfont=\tmlb
#hindiifm=dvng.ifm
#hindifont=\devnf
\begin{document}
Thank you!
{#tamil na^nRi #endtamil}
{#hindi dhanyavaad #endhindi}
\end{document}
Process it with
itrans
: (Windows MikTeX users need to change path to itrans53\bin
to evoke itrans.exe
$ itrans -i indic-pre.tex -o indic.tex
Then run
(pdf)latex
on indic.tex
, which is of course the file to edit if you have further text to add. Here's the output of that little file:Hold on! How’d you know you needed to type na^nRi
etc?
I peeked at the transliteration map files ☺. For example, tamil.ps for the Tamil transliteration, dvng.ps for the Hindi (devanagari) transliteration, etc. If your LaTeX set up doesn’t install these files by default, you can download the package source .zip
and look in the doc
folder. The .itx
files are sample source .tex
files that generated the .ps
files.
Labels:
hindi,
indic-languages,
latex,
multilingual,
tamil
Wednesday, August 4, 2010
New (La)TeX Q&A Site
I’m sure many people have looked up Stack Overflow for programming-related Q&A. Well there’s now a similar community-driven LaTeX-specific Q&A site: TeX, LaTeX and Friends. Here’ a short snippet from the site FAQ (my own emphasis):
After just 7 days in private beta, the site has 323 users and 658 answers to 242 questions. With many (La)TeX experts already onboard answering questions, this is definitely one for the bookmarks (especially if you still can’t get used to comp.text.tex!)
- What kind of questions can I ask here?
- TeX - LaTeX - Stack Exchange is for expert users of TeX, LaTeX and other related typesetting systems. Please do look around to see if your question has already been asked (and maybe even answered!) before you ask.
- What kind of questions should I not ask here?
- Avoid asking questions that are subjective, argumentative, or require extended discussion. This is not a discussion board, this is a place for questions that can be answered!
After just 7 days in private beta, the site has 323 users and 658 answers to 242 questions. With many (La)TeX experts already onboard answering questions, this is definitely one for the bookmarks (especially if you still can’t get used to comp.text.tex!)
Subscribe to:
Posts (Atom)