Jump to content

XeTeX

From Wikipedia, the free encyclopedia
(Redirected from XeLaTeX)

XeTeX
Original author(s)Jonathan Kew
Stable release
0.999997 / March 7, 2025; 4 months ago (2025-03-07)
Repository
Written inPascal (WEB), C and C++
Operating systemCross-platform
TypeTypesetting
LicenseMIT License
Websitexetex.sourceforge.net

XeTeX (/ˈztɛx/ ZEE-tekh[1] or /ˈztɛk/; see also Pronouncing and writing "TeX"), sometimes stylized as XeTeX, is a TeX typesetting engine using Unicode and supporting modern font technologies such as OpenType, Graphite and Apple Advanced Typography (AAT). It was originally written by Jonathan Kew and is distributed under the X11 free software license.[2]

Initially developed for Mac OS X only, it is now available for all major platforms. It natively supports Unicode and the input file is assumed to be in UTF-8 encoding by default. XeTeX can use any fonts installed in the operating system without configuring TeX font metrics, and can make direct use of advanced typographic features of OpenType, AAT and Graphite technologies such as alternative glyphs and swashes, optional or historic ligatures, and variable font weights. Support for OpenType local typographic conventions (locl tag) is also present. XeTeX even allows raw OpenType feature tags to be passed to the font. Microtypography is also supported. XeTeX also supports typesetting mathematics using Unicode fonts that contain special mathematical features, such as Cambria Math or Asana Math as an alternative to the traditional mathematical typesetting based on TeX font metrics.

LaTeX developers have announced that they no longer support new LaTeX functionalities on the XeTeX engine, and encourage users to migrate to LuaTeX, another Unicode-supporting engine.[3]

Mode of operation

[edit]
Rendering of ligatures and contextual alternates in XeTeX using an OpenType font (Hoefler Text).

XeTeX processes input in two stages. In the first stage XeTeX outputs an extended DVI (xdv) file, which is then converted to PDF by a driver. In the default operating mode the xdv output is piped directly to the driver without producing any user-visible intermediate files. It is possible to run just the first stage of XeTeX and save the xdv, although as of July 2008 there are no viewers capable of displaying the intermediate format.

Two backend drivers are available to generate PDF from an xdv file:

Starting from version 0.997, the default driver is xdvipdfmx on all platforms. As of version 0.9999, xdv2pdf is no longer supported and its development has been discontinued.[4]

XeTeX works well with both LaTeX and ConTeXt macro packages. It is usually invoked through xelatex when using LaTeX. It is usually used with the fontspec package, which provides a configurable interface for font selection, and allows complex font choices to be named and later reused.[5]

XeTeX is bundled with TeX Live, MacTeX, MiKTeX and Lyx (see the History below for dates and versions).[6]

Example

[edit]

The following is an example of XeLaTeX source and rendered output. The typeface used is OFL-licensed font Linux Libertine. The text is to be processed by the command xelatex.

Arabic support

[edit]

XeTeX also supports right-to-left scripts, such as Arabic. One way of rendering Arabic in XeTeX is to use the package arabxetex. In order to do so, the Arabic is placed inside the following:

\begin{arab}[utf]
.
.
.
\end{arab}

The following code illustrates this:

Features

[edit]

In bibliographic files (see below the BibTeX example) you can use Unicode entities and call them with their native scripting, for example \cite{Ekstrøm}, instead of a transliterated ASCII form like \cite{Ekstrom} which is mandatory using the pdfTeX engine.

% Encoding: UTF8
@ARTICLE(Ekstrom,
        AUTHOR    = "Author w",
        TITLE     = "{Ekstrøm title}",
        JOURNAL   = "Ekstr{\o}m Journal",
        YEAR      = 1965,
    note      = {Working with pdflatex}
        )
 @ARTICLE(Ekstrøm,
        AUTHOR    = "Author Ekstr{\o}m",
        TITLE     = "{Ekstrøm title}",
        JOURNAL   = "Ekstrøm Journal",
        YEAR      = "1965",
    note      = {Not working with pdflatex but with xelatex}
        )

History

[edit]

XeTeX was initially released for Mac OS X only in April 2004[citation needed] with built-in AAT and Unicode support. In 2005 support for OpenType layout features was first introduced. During BachoTeX 2006 a version for Linux was announced, which was ported to Microsoft Windows by Akira Kakuto a few months later, and finally included into TeX Live 2007 for all major platforms. XeTeX is also supported by LyX since version 2.0[7] and shipped with MiKTeX since version 2.7. As of the inclusion in TeX Live, XeTeX supports most macro packages written for LaTeX, OpenType, TrueType and PostScript fonts without any specific setup procedure. Version 0.998 announced at BachoTeX 2008 supports Unicode normalization via the \XeTeXinputnormalization command. Version 0.9999, released in May 2013, switched from ICU Layout Engine to HarfBuzz for OpenType layout, and Graphite2 engine for Graphite layout, as well Core Text framework instead of ATSUI on Mac OS X.

XeTeX's original SourceForge code repository has not seen changes since January 20, 2020.[8] It's still included in the TeX Live repository and occasionally receives fixes, but there have been no major developments. LaTeX developers have stated that it won't be supported in their ongoing effort to produce tagged PDF,[3] and one developer consider it unmaintained.[9]

See also

[edit]

References

[edit]
  1. ^ Kew, Jonathan (April 3, 2007). "Jonathan Kew". TUG (Interview). Interviewed by Dave Walden. Retrieved November 20, 2009.
  2. ^ "XeTeX COPYING file". Retrieved March 18, 2013.
  3. ^ a b LaTeX Project Team (November 1, 2024). "News from the "LaTeX Tagged PDF" project" (PDF). LaTeX News. No. 40. Retrieved May 22, 2025.
  4. ^ Hosny, Khaled (March 12, 2013). "Future of xdv2pdf driver on Mac". Retrieved June 7, 2013.
  5. ^ Robertson, Will (August 9, 2008). "The fontspec package" (PDF). Archived from the original (PDF) on February 5, 2009. Retrieved January 8, 2009.
  6. ^ "LyX wiki | LyX / XeTeX". wiki.lyx.org. Retrieved August 25, 2017.
  7. ^ "LyX wiki | LyX / New in LyX 2.0". wiki.lyx.org. Retrieved August 25, 2017.
  8. ^ "XeTeX - Unicode-based TeX Code". SourceForge. May 21, 2024. Retrieved May 27, 2024.
  9. ^ Wright, Joseph (November 5, 2024). "Engine news from the LaTeX Project". Some TeX Developments. Retrieved May 21, 2025.

Further reading

[edit]
[edit]