XeTeX2: Difference between revisions
From SMC Wiki
(Created page with "=== XeTeX === XeTeX is an extension of TeX with built-in support for Unicode and OpenType. For more details see http://scripts.sil.org/xetex == Installing XeTeX == XeTeX is...") |
No edit summary |
||
Line 1: | Line 1: | ||
XeTeX | == Creating documents using XeTeX == | ||
This a much more complex example with XeTeX. | |||
The source code below rectifies some of the code from [[XeTeX]] to make the file more professional. | |||
It would take more time to compile this script than the one explained in the simple [[XeTeX]] tutorial. | |||
<pre> | <pre> | ||
\documentclass[10pt]{article} | \documentclass[10pt]{article} | ||
Line 24: | Line 15: | ||
\usepackage{polyglossia} | \usepackage{polyglossia} | ||
\setdefaultlanguage{malayalam} | \setdefaultlanguage{malayalam} | ||
\usepackage{unicode-math} % This provides some mathematical | |||
%symbols, such like $\textcopyright$, for copyright symbol. | |||
% The command below defines the values for faking bold, | |||
% italic, and bold-italic fonts used for Rachana and cmr fonts. | |||
\newcommand{\faking}{BoldFont=*,BoldFeatures={FakeBold=1.4}, | |||
ItalicFont=*,ItalicFeatures={FakeSlant=0.25}, | |||
BoldItalicFont=*,BoldItalicFeatures={FakeBold=1.4,FakeSlant=0.25}} | |||
\setmainfont[Script=Malayalam,HyphenChar="200C, Mapping=tex-text]{Rachana} | \setmainfont[Script=Malayalam, HyphenChar="200C, Mapping=tex-text, \faking]{Rachana} | ||
% In the above line we customized Hyphenation characters since | % In the above line we customized Hyphenation characters since | ||
% visible hyphe, aka Soft Hyphen is not used for Malayalam | % visible hyphe, aka Soft Hyphen is not used for Malayalam | ||
% Here, Mapping is used to map the quotes to the curly fonts | % Here, Mapping is used to map the quotes to the curly fonts | ||
Line 34: | Line 36: | ||
% the 255th character) to the cmr font, so that | % the 255th character) to the cmr font, so that | ||
% the text is more professional. | % the text is more professional. | ||
\XeTeXinterchartokenstate=1 | \XeTeXinterchartokenstate=1 | ||
\chardef\CharNormal=0 | \chardef\CharNormal=0 | ||
Line 48: | Line 48: | ||
} | } | ||
\newtoks\TokSetfont | \newtoks\TokSetfont | ||
\TokSetfont={\begingroup\fontspec{cmr10}} % cmr10 is the font set | \TokSetfont={\begingroup\fontspec[\faking]{cmr10}} % cmr10 is the font set | ||
\XeTeXinterchartoks\CharNormal\CharChanged=\TokSetfont | \XeTeXinterchartoks\CharNormal\CharChanged=\TokSetfont | ||
\XeTeXinterchartoks\CharBound\CharChanged=\TokSetfont | \XeTeXinterchartoks\CharBound\CharChanged=\TokSetfont | ||
Line 57: | Line 57: | ||
\lefthyphenmin=3 | \lefthyphenmin=3 | ||
\righthyphenmin=4 | \righthyphenmin=4 | ||
\title{\textbf{സ്വർണം}} | \title{\Huge\textbf{സ്വർണം}} | ||
\author{മലയാളം വിക്കിപീഡിയ} | \author{മലയാളം വിക്കിപീഡിയ} | ||
\date{} | \date{} | ||
Line 67: | Line 67: | ||
മൃദുവും തിളക്കമുള്ളതുമായ മഞ്ഞലോഹമാണ് സ്വർണം. വിലയേറിയ ലോഹമായ സ്വർണം, നാണയമായും, ആഭരണങ്ങളുടെ രൂപത്തിലും നൂറ്റാണ്ടുകളായി മനുഷ്യൻ ഉപയോഗിച്ചു പോരുന്നു. | മൃദുവും തിളക്കമുള്ളതുമായ മഞ്ഞലോഹമാണ് സ്വർണം. വിലയേറിയ ലോഹമായ സ്വർണം, നാണയമായും, ആഭരണങ്ങളുടെ രൂപത്തിലും നൂറ്റാണ്ടുകളായി മനുഷ്യൻ ഉപയോഗിച്ചു പോരുന്നു. | ||
ചെറിയ കഷണങ്ങളും തരികളുമായി സ്വതന്ത്രാവസ്ഥയിൽത്തന്നെ പ്രകൃതിയിൽ ഈ ലോഹം കണ്ടുവരുന്നു. ലോഹങ്ങളിൽ വച്ച് ഏറ്റവും നന്നായി രൂപഭേദം വരുത്താവുന്ന ലോഹമാണിത്. | ചെറിയ കഷണങ്ങളും തരികളുമായി സ്വതന്ത്രാവസ്ഥയിൽത്തന്നെ പ്രകൃതിയിൽ ഈ ലോഹം കണ്ടുവരുന്നു. ലോഹങ്ങളിൽ വച്ച് ഏറ്റവും നന്നായി രൂപഭേദം വരുത്താവുന്ന ലോഹമാണിത്.~% | ||
\footnote{http://www.webelements.com/webelements/elements/text/Au/key.html ``Key properties of gold'' (in ഇംഗ്ലീഷ്). ശേഖരിച്ചത് 2007-06-18.} | \footnote{http://www.webelements.com/webelements/elements/text/Au/key.html ``Key properties of gold'' (in ഇംഗ്ലീഷ്). ശേഖരിച്ചത് 2007-06-18.} | ||
Line 84: | Line 84: | ||
Now you need to compile this document to generate PDF. | Now you need to compile this document to generate PDF. | ||
<pre> | <pre> | ||
xelatex example.tex | xelatex example.tex | ||
</pre> | </pre> | ||
Revision as of 12:33, 11 January 2014
Creating documents using XeTeX
This a much more complex example with XeTeX.
The source code below rectifies some of the code from XeTeX to make the file more professional.
It would take more time to compile this script than the one explained in the simple XeTeX tutorial.
\documentclass[10pt]{article} \usepackage{ifthen} \usepackage{fontspec} \usepackage{polyglossia} \setdefaultlanguage{malayalam} \usepackage{unicode-math} % This provides some mathematical %symbols, such like $\textcopyright$, for copyright symbol. % The command below defines the values for faking bold, % italic, and bold-italic fonts used for Rachana and cmr fonts. \newcommand{\faking}{BoldFont=*,BoldFeatures={FakeBold=1.4}, ItalicFont=*,ItalicFeatures={FakeSlant=0.25}, BoldItalicFont=*,BoldItalicFeatures={FakeBold=1.4,FakeSlant=0.25}} \setmainfont[Script=Malayalam, HyphenChar="200C, Mapping=tex-text, \faking]{Rachana} % In the above line we customized Hyphenation characters since % visible hyphe, aka Soft Hyphen is not used for Malayalam % Here, Mapping is used to map the quotes to the curly fonts % The code below maps every English letters, numbers, etc (up to % the 255th character) to the cmr font, so that % the text is more professional. \XeTeXinterchartokenstate=1 \chardef\CharNormal=0 \chardef\CharBound=255 \newXeTeXintercharclass\CharChanged \newcounter{eng} \setcounter{eng}{1} \whiledo {\value{eng} < 255}% A while loop that loops upto 255 {% \XeTeXcharclass\theeng=\CharChanged \stepcounter {eng}% } \newtoks\TokSetfont \TokSetfont={\begingroup\fontspec[\faking]{cmr10}} % cmr10 is the font set \XeTeXinterchartoks\CharNormal\CharChanged=\TokSetfont \XeTeXinterchartoks\CharBound\CharChanged=\TokSetfont \XeTeXinterchartoks\CharChanged\CharNormal={\endgroup} \XeTeXinterchartoks\CharChanged\CharBound={\endgroup} \lefthyphenmin=3 \righthyphenmin=4 \title{\Huge\textbf{സ്വർണം}} \author{മലയാളം വിക്കിപീഡിയ} \date{} \begin{document} \maketitle \section{സ്വർണം} മൃദുവും തിളക്കമുള്ളതുമായ മഞ്ഞലോഹമാണ് സ്വർണം. വിലയേറിയ ലോഹമായ സ്വർണം, നാണയമായും, ആഭരണങ്ങളുടെ രൂപത്തിലും നൂറ്റാണ്ടുകളായി മനുഷ്യൻ ഉപയോഗിച്ചു പോരുന്നു. ചെറിയ കഷണങ്ങളും തരികളുമായി സ്വതന്ത്രാവസ്ഥയിൽത്തന്നെ പ്രകൃതിയിൽ ഈ ലോഹം കണ്ടുവരുന്നു. ലോഹങ്ങളിൽ വച്ച് ഏറ്റവും നന്നായി രൂപഭേദം വരുത്താവുന്ന ലോഹമാണിത്.~% \footnote{http://www.webelements.com/webelements/elements/text/Au/key.html ``Key properties of gold'' (in ഇംഗ്ലീഷ്). ശേഖരിച്ചത് 2007-06-18.} \section{ഗുണങ്ങൾ} സ്വർണത്തിന്റെ അണുസംഖ്യ 79-ഉം പ്രതീകം Au എന്നുമാണ്. ഔറം എന്ന ലത്തീൻ വാക്കിൽ നിന്നാണ് Au എന്ന പ്രതീകം ഉണ്ടായത്. ഏറ്റവും നന്നായി രൂപഭേദം വരുത്താൻ സാധിക്കുന്ന ലോഹമാണ് സ്വർണ്ണം. ഒരു ഗ്രാം സ്വർണ്ണം അടിച്ചു പരത്തി ഒരു ചതുരശ്രമീറ്റർ വിസ്തീർണ്ണമുള്ള ഒരു തകിടാക്കി മാറ്റാൻ സാധിക്കും. അതായത് 0.000013 സെന്റീമീറ്റർ വരെ ഇതിന്റെ കനം കുറക്കാൻ കഴിയും. അതു പോലെ വെറും 29 ഗ്രാം സ്വർണ്ണം ഉപയോഗിച്ച് 100 കിലോ മീറ്റർ നീളമുള്ള കമ്പിയുണ്ടാക്കാനും സാധിക്കും. \section{ചരിത്രം} ചരിത്രാതീത കാലം മുതൽക്കേ അറിയപ്പെട്ടിരുന്ന അമൂല്യലോഹമാണ് സ്വർണ്ണം. ഒരുപക്ഷേ മനുഷ്യൻ ആദ്യമായി ഉപയോഗിച്ച ലോഹവും ഇതുതന്നെയായിരിക്കണം. ബി.സി.ഇ. 2600 ലെ ഈജിപ്ഷ്യൻ ഹീറോഗ്ലിഫിക്സ് ലിഖിതങ്ങളിൽ ഈജിപ്തിൽ സ്വർണ്ണം സുലഭമായിരുന്നെന്ന് പരാമർശിക്കുന്നുണ്ട്. ചരിത്രം പരിശോധിച്ചാൽ ഈജിപ്തും നുബിയയുമാണ് ലോകത്തിൽ ഏറ്റവുമധികം സ്വർണ്ണം ഉല്പ്പാദിപ്പിച്ചിരുന്ന മേഖലകൾ. ബൈബിളിലെ പഴയ നിയമത്തിൽ സ്വർണ്ണത്തെപ്പറ്റി പലവട്ടം പരാമർശിക്കുന്നുണ്ട്. \end{document}
Now you need to compile this document to generate PDF.
xelatex example.tex