summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/fonts/cm-unicode/INSTALL
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-07-09 23:29:33 +0000
committerKarl Berry <karl@freefriends.org>2010-07-09 23:29:33 +0000
commit2fa05645577bafd0f8aa732f41c1b4c99d38ea59 (patch)
treefb0eb64f10ebf25cf87b30856efc14a6b8d99542 /Master/texmf-dist/doc/fonts/cm-unicode/INSTALL
parentc3b840977fe3c2d3d70b67a29c077c0e11cb70eb (diff)
new font package cm-unicode (8jul10)
git-svn-id: svn://tug.org/texlive/trunk@19313 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/fonts/cm-unicode/INSTALL')
-rw-r--r--Master/texmf-dist/doc/fonts/cm-unicode/INSTALL78
1 files changed, 78 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/fonts/cm-unicode/INSTALL b/Master/texmf-dist/doc/fonts/cm-unicode/INSTALL
new file mode 100644
index 00000000000..a3258357bb0
--- /dev/null
+++ b/Master/texmf-dist/doc/fonts/cm-unicode/INSTALL
@@ -0,0 +1,78 @@
+Installation for XFree86 (X.Org)
+--------------------------------
+
+Unpack the archive file containing fonts in some temporal directory, for
+example /tmp :
+
+cd /tmp
+tar xzvf cm_unicode-VERSION-pfb.tar.gz
+cd cm-unicode-VERSION
+
+where VERSION is version number of this font pack.
+Then create cm-unicode/ directory at the place, where your X stores fonts, for example
+/usr/share/fonts :
+
+mkdir -p /usr/share/fonts/cm-unicode
+
+You should become root to do it. Then copy font files there:
+
+cp *.afm /usr/share/fonts/cm-unicode/
+cp *.pfb /usr/share/fonts/cm-unicode/
+
+If you are using XFree86 prior to 4.3 you shoul also copy fonts.scale there.
+Then change directory to /usr/share/fonts/cm-unicode/ :
+
+cd /usr/share/fonts/cm-unicode/
+
+and do
+
+mkfontscale # if you are using XFree86-4.3 or later or recent X.Org
+mkfontdir
+
+Currently mkfontscale and mkfontdir may produce errors, so copy
+fonts.dir and fonts.scale files supplied into
+/usr/share/fonts/cm-unicode/
+
+Then add
+FontPath "/usr/share/fonts/cm-unicode/"
+to "Files" Section of /etc/X11/xorg.conf (/etc/X11/XF86Config). On the
+next run X.Org (XFree86) will load these fonts.
+
+If you are using fontconfig (X.Org, XFree86-4.3, may be installed on
+XFree86-4.2) you should add a line
+<dir>/usr/share/fonts/cm-unicode</dir>
+to /etc/fonts/fonts.conf or better to /etc/fonts/local.conf then run
+
+fc-cache
+
+
+Installation for ghostscript
+----------------------------
+(Optional, modern versions of ghostscript retreive information from fontconfig)
+
+
+Assuming that you have rather new ghostscript version like 7.x go to
+default ghostscript font directory, typically /usr/share/ghostscript/fonts, then
+add links to fonts installed for X or copy them:
+
+cd /usr/share/ghostscript/fonts
+ln -s /usr/share/fonts/cm-unicode/*.afm .
+ln -s /usr/share/fonts/cm-unicode/*.pfb .
+
+Then go to the ghostscript library directory, for example
+
+cd /usr/share/ghostscript/?.??/lib
+
+where ?.?? is ghostscript version. Copy Fontmap.CMU from tarball:
+
+cp /tmp/cm_unicode-VERSION/Fontmap.CMU .
+
+Then add following line to Fontmap file:
+
+(Fontmap.CMU) .runlibfile
+
+Note that pdfwriter from ghostscript versions prior to 8.x does not
+understand characters not existing in the encoding. These fonts were
+tested with ps2pdf script from AFPL ghostscript-8.14.
+
+That's all.