summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/xetex
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2006-09-15 16:15:38 +0000
committerJonathan Kew <jfkthame@googlemail.com>2006-09-15 16:15:38 +0000
commitcbd09ffecddff833dd11ee5b0fc943648c19d978 (patch)
tree9f6070431e3bc22dd4206a59a3a757a4767a0b90 /Master/texmf-dist/doc/xetex
parentd8ed1d31bf3ef5cdd91c34bbd0dc4d8d026e8b4b (diff)
moved source and doc for fontspec and xltxtra to xelatex directory
git-svn-id: svn://tug.org/texlive/trunk@2133 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/xetex')
-rw-r--r--Master/texmf-dist/doc/xetex/fontspec/README48
-rw-r--r--Master/texmf-dist/doc/xetex/fontspec/fontspec-example.tex55
-rw-r--r--Master/texmf-dist/doc/xetex/fontspec/fontspec.pdfbin1971940 -> 0 bytes
l---------Master/texmf-dist/doc/xetex/xltxtra/README1
-rw-r--r--Master/texmf-dist/doc/xetex/xltxtra/README.txt18
-rw-r--r--Master/texmf-dist/doc/xetex/xltxtra/xltxtra.pdfbin221150 -> 0 bytes
6 files changed, 0 insertions, 122 deletions
diff --git a/Master/texmf-dist/doc/xetex/fontspec/README b/Master/texmf-dist/doc/xetex/fontspec/README
deleted file mode 100644
index b9f6e1b014b..00000000000
--- a/Master/texmf-dist/doc/xetex/fontspec/README
+++ /dev/null
@@ -1,48 +0,0 @@
---------------------------
-THE FONTSPEC PACKAGE v1.10
-
-The fontspec package only works with XeTeX, a unicode capable TeX-variant. It provides an automatic and unified interface for loading fonts in LaTeX. XeTeX allows a direct interface to system-installed fonts, so no manual font installation is required.
-
-This package also provides access to the large number of font features available with AAT and OpenType fonts, including upper and lower case numbers, proportional and monospaced numbers, swash letters, vulgar fractions, ligature control, and many others.
-
-It also provides an interface to set the XeTeX font mappings, font colour, relative font scaling, inter-word space scaling, and more.
-
-------------------------
-SUMMARY OF USER COMMANDS
-
-Font families may be selected individually with the command
- \fontspec[<font options>]{<font name>}
-
-Commands for selecting fonts efficiently can be created with
- \newfontinstance\myfont[<font options>]{<font name>}
-
-Default document fonts are selected with
- \setromanfont[<font options>]{<font name>}
- \setsansfont[<font options>]{<font name>}
- \setmonofont[<font options>]{<font name>}
-
-Fonts to be used in maths are defined with
- \setmathrm[<font options>]{<font name>}
- \setmathsf[<font options>]{<font name>}
- \setmathtt[<font options>]{<font name>}
- \setboldmathrm[<font options>]{<font name>}
-
-Features to be used for every subsequently defined font are specified with
- \defaultfontfeatures{<default font options>}
-
-Features may be added to the font currently in use with
- \addfontfeatures{<font options to add>}
- \addfontfeature{<...>} does the same thing
-
-Features not provided for out of the box may be defined with
- \newAATfeature{<feature tag>}{<feature code>}{<selector code>}
- \newICUfeature{<feature tag>}{[+|-]<4 letter feature string>}
- \newfontfeature{<feature tag>}{<arbitrary XeTeX font options>}
-
-Features can be renamed and feature options can be renamed with
- \aliasfontfeature{<current feature>}{<new feature>}
- \aliasfontfeatureoption{<feature>}{<current option>}{<new option>}
-
---------------
-Will Robertson
-2006 \ No newline at end of file
diff --git a/Master/texmf-dist/doc/xetex/fontspec/fontspec-example.tex b/Master/texmf-dist/doc/xetex/fontspec/fontspec-example.tex
deleted file mode 100644
index 2aed92a6fc3..00000000000
--- a/Master/texmf-dist/doc/xetex/fontspec/fontspec-example.tex
+++ /dev/null
@@ -1,55 +0,0 @@
-
-\documentclass[12pt]{article}
-
-\usepackage{euler,fontspec,graphicx}
-
-\defaultfontfeatures{Scale=MatchLowercase ,Mapping=tex-text}
-\setromanfont{Hoefler Text}
-\setsansfont{Gill Sans}
-\setmonofont{Lucida Sans Typewriter}
-
-%% Define the \XeTeX logo:
-\DeclareRobustCommand\XeTeX{%
- \mbox{\smash{%
- X\lower.5ex\hbox{\kern-.12em\reflectbox{E}}\kern-.1667em
- T\kern -.1667em\lower .5ex\hbox {E}\kern -.12em X}}\@}
-%% The logo should be defined on a per-document basis
-%% so that its parameters may be fine tuned for the fonts used.
-
-\begin{document}
-\pagestyle{empty}
-
-\section{The basics of the \textsf{fontspec} package}
-
-The \textsf{fontspec} package enables automatic font selection for \LaTeX{} documents typeset with \XeTeX{}. The basic command is\\
-\indent \verb|\fontspec[font features]{Mac OS X font display name}|.\\
-As an example:
-
-\begin{center}
- \Large
- \fontspec[
- Colour = 0000CC,
- Numbers = OldStyle,
- VerticalPosition = Ordinal,
- Variant = 2
- ]{Apple Chancery}
- My 1st example of Apple Chancery
-\end{center}
-
-The default roman, sans serif, and typewriter fonts may be set with the \verb|\setromanfont|, \verb|\setsansfont| and \verb|\setmonofont| commands, respectively, as shown in the preamble. They take the same syntax as the \verb|\fontspec| package. All expected font shapes are available:
-
-\begin{center}
- {\scshape Small caps and \itshape small caps italic\dots}\\
- {\sffamily\bfseries Bold sans serif and \itshape bold italic sans serif\dots}
-\end{center}
-
-With the roman and sans serif fonts set in the preamble, text fonts in math mode are also changed: $\cos(n\pi)=\pm 1$. The maths typeface `Euler' has been used in this document (with the \textsf{euler} package---note that the \textsf{eulervm} package will not work in \XeTeX{} because it uses virtual fonts), since the default Computer Modern maths font is rather light.
-\[
- \mathcal F(s) = \int^\infty_0\! f(t) e^{-st}\,\mathrm{d}t
-\]
-
-You'll also notice the \verb|\defaultfontfeatures| command in the preamble. This command takes a single argument of font features that are then applied to every subsequent instance of font selection. The first argument in this case, \verb|Mapping=tex-text|, enables regular \TeX{} ligatures like \verb|``---''| for ``---''. The second automatically scales the fonts to the same x-height.
-
-Please see the documentation for font feature explanation and further package niceties.
-
-\end{document}
diff --git a/Master/texmf-dist/doc/xetex/fontspec/fontspec.pdf b/Master/texmf-dist/doc/xetex/fontspec/fontspec.pdf
deleted file mode 100644
index b9a50832149..00000000000
--- a/Master/texmf-dist/doc/xetex/fontspec/fontspec.pdf
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/xetex/xltxtra/README b/Master/texmf-dist/doc/xetex/xltxtra/README
deleted file mode 120000
index c3ca07460ab..00000000000
--- a/Master/texmf-dist/doc/xetex/xltxtra/README
+++ /dev/null
@@ -1 +0,0 @@
-README.txt \ No newline at end of file
diff --git a/Master/texmf-dist/doc/xetex/xltxtra/README.txt b/Master/texmf-dist/doc/xetex/xltxtra/README.txt
deleted file mode 100644
index 335110d32d8..00000000000
--- a/Master/texmf-dist/doc/xetex/xltxtra/README.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-------------------------
-THE XLTXTRA PACKAGE v0.1
-
-This package provides a few small features that
-are useful for XeLaTeX.
-
-It loads the fixltx2e and etex packages, and
-patches a couple of other LaTeX commands: \-
-for discretionary hyphenation with variable
-hyphenation characters, and \textsuperscript/
-\textsubscript that use the fontspec to access
-real superior/inferior characters. It also
-provides a parameterised logos for \TeX,
-\LaTeX and \XeTeX.
-
---------------
-Will Robertson
-2006
diff --git a/Master/texmf-dist/doc/xetex/xltxtra/xltxtra.pdf b/Master/texmf-dist/doc/xetex/xltxtra/xltxtra.pdf
deleted file mode 100644
index c266ce8aaff..00000000000
--- a/Master/texmf-dist/doc/xetex/xltxtra/xltxtra.pdf
+++ /dev/null
Binary files differ