summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/fonts/fbb/README
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-08-19 22:49:34 +0000
committerKarl Berry <karl@freefriends.org>2013-08-19 22:49:34 +0000
commit8e7dc4a7554c9b16ad5bf266a0af1ce9f6a4f41f (patch)
tree9a0565969b7f12bafe66449ab4f776539a60312b /Master/texmf-dist/doc/fonts/fbb/README
parentd2160399e534a2ea9fba2b5af0e7ece4a5a88d54 (diff)
fbb (19aug13)
git-svn-id: svn://tug.org/texlive/trunk@31471 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/fonts/fbb/README')
-rw-r--r--Master/texmf-dist/doc/fonts/fbb/README76
1 files changed, 76 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/fonts/fbb/README b/Master/texmf-dist/doc/fonts/fbb/README
new file mode 100644
index 00000000000..8dd96d9cacf
--- /dev/null
+++ b/Master/texmf-dist/doc/fonts/fbb/README
@@ -0,0 +1,76 @@
+This package, derived from Cardo, provides a Bembo-like font family in otf and pfb format plus LaTeX font support files. As Cardo is licensed under the SIL OFL, so are the font files in this package. All other support files are subject to the LaTeX Project Public License. See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html for the details of that license. Note that Bembo is a name trademarked by Monotype, and Cardo is a reserved name under the OFL, hence the strange name for this package, drawn from the Berry id for the Bembo font family.
+
+Current version: 0.9
+
+
+There are without doubt many errors remaining in the font files, especially the kerning tables, and I would appreciate error reports. The BoldItalic style is the most likely to contain errors, having been subjected to the least testing.
+
+The otf fonts contain all the kerning and other tables. Should you wish to modify these yourself, the LaTeX support files may be re-created using the command
+
+/usr/texbin/autoinst --noupdmap --noswash --notitling --noornaments --target=./texmf --encoding=TS1,T1,LY1 --vendor=public --typeface=fbb *.otf
+
+after cding to the folder containing just the modified otf fonts and a subfolder named texmf. You should replace the newly generated fbb.sty with the one from the distribution in order to preserve its functionality. The names of the encoding files should also be modified appropriately from those assigned by autoinst. I used the following bash shell script, which assumed you are in the directory holding the otf files and a texmf subfolder:
+
+#!/bin/bash
+pushd texmf/fonts/map/dvips/fbb
+sed -i '' 's/<\[a_/<\[fbb_/g' fbb.map
+popd
+pushd texmf/fonts/enc/dvips/fbb
+for f in *.enc; do mv ${f} fbb${f:1}; done
+popd
+
+Installation:
+
+Mac OS X: To install, open a Terminal window and cd to inside the downloaded TDS folder.
+
+Method A (recommended): type
+
+sudo cp -Rfp * /usr/local/texlive/texmf-local
+
+then
+
+sudo mktexlsr
+
+then
+
+sudo -H updmap-sys --enable Map=fbb.map
+
+Method B: If you insist on making your font installations in your home folder, potentially making your personal installation become out of sync with updates to TeXLive, use instead
+
+(i) if you checked Update for All Users in TeXLive utility
+
+cp -Rfp * ~/Library/texmf
+
+then
+
+updmap --enable Map=fbb.map
+
+(ii) otherwise
+
+cp -Rfp * ~/Library/texmf
+
+then
+
+sudo updmap-sys --enable Map=fbb.map
+
+Linux: Very similar to Mac OS X.
+
+MikTeX: Copy the fbb.tds.zip to the root of the folder you use for personal additions to the TeX trees, open a command window, chdir to that folder, and type
+
+unzip fbb.tds.zip
+initexmf --update-fndb
+initexmf --edit-config-file updmap
+
+The latter command should open updmap.cfg in your default editor, commonly Notepad. Add the line
+
+Map fbb.map
+
+to updmap.cfg, save and close. Then, in the command window, type
+
+initexmf --mkmaps
+
+You can ignore error messages that may occur here. This should result in a properly enabled fbb.
+
+Please send comments and bug reports or suggestions for improvement to
+
+msharpe at ucsd dot edu \ No newline at end of file