summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/mltex/mltex.txt
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/mltex/mltex.txt
Initial commit
Diffstat (limited to 'macros/latex/contrib/mltex/mltex.txt')
-rw-r--r--macros/latex/contrib/mltex/mltex.txt87
1 files changed, 87 insertions, 0 deletions
diff --git a/macros/latex/contrib/mltex/mltex.txt b/macros/latex/contrib/mltex/mltex.txt
new file mode 100644
index 0000000000..8b629aeb2a
--- /dev/null
+++ b/macros/latex/contrib/mltex/mltex.txt
@@ -0,0 +1,87 @@
+ How to use MLTeX with LaTeX
+
+ Bernd Raichle
+
+ 17 November 1998
+
+
+This document contains instructions on how to use MLTeX's \charsubdef
+extension with LaTeX. Before reading this file, you should read
+`install.txt', which will explain how the LaTeX installation works.
+
+This file describes:
+
+ * How to create the LaTeX format with MLTeX.
+
+ * How to use MLTeX with LaTeX.
+
+
+
+CREATING THE LaTeX FORMAT
+=========================
+
+To create the LaTeX format, you should follow the standard LaTeX
+installation guide.
+
+ - Do NOT include any MLTeX specific file into your LaTeX format!
+
+ - Do NOT use the obsolete files `compatible.tex', `extdef.tex',
+ `masthyph.tex', or any other file from the old MLTeX distribution!
+
+ - Depending on your TeX implementation there is either a special
+ version of the `initex' program provided which is called `mlinitex',
+ `initex -mltex', or `tex -ini -mltex'.
+ Use this program resp. command line options when creating the LaTeX
+ format.
+
+As a result your LaTeX format file `latex.fmt' should not contain any
+MLTeX specific definitions or declarations.
+
+
+
+USING THE MLTeX EXTENSION
+=========================
+
+To enable the MLTeX extension, you simply use the standard LaTeX
+package `fontenc' with the MLTeX font encoding LO1 instead of OT1,
+e.g. replace
+
+ \usepackage[T1,OT1]{fontenc}
+
+by
+
+ \usepackage[T1,LO1]{fontenc}
+
+which will choose LO1 as the default font encoding. If you want to
+choose another default font encoding, you can switch to LO1 by
+
+ \fontencoding{LO1}\selectfont
+
+within your document. Nonetheless you have to declare the new font
+encoding `LO1' by loading it using the package `fontenc'.
+
+For LaTeX's font encoding OT1 the associated MLTeX font encoding is
+provided with a basic set of fd files. This font encoding is called
+LO1 (for M_L_TeX's _O_T1) and is a superset of OT1.
+
+
+Another simpler way to use this MLTeX extended font encoding is
+provided by the package `mltex'. By including
+
+ \usepackage{mltex}
+
+in the document preamble all references to OT1 will get replaced by
+LO1. If you don't want to hide OT1 totally, you can select LO1 as
+usual default font encoding by using the package option `switchonly',
+e.g. by including
+
+ \usepackage[switchonly]{mltex}
+
+in the document preamble.
+
+
+--- Copyright (C) 1996-1998 Bernd Raichle. All rights reserved ---
+This file can be redistributed and/or modified under the terms
+of the LaTeX Project Public License Distributed from CTAN
+archives in directory macros/latex/base/lppl.txt; either
+version 1 of the License, or any later version.