blob: 1e6bca14383b67a595dfd874acb76131e4ec2d25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
Install with Makefile
---------------------
For Unix: installs into /usr/local/share/texmf, if you want it
elsewhere then edit the Makefile. Run
make install
as root
Install manually
----------------
In the following replace $(TEXMF) by your TeX tree (where TeX
looks for its files -- this will vary depending on your TeX
distribution, often /usr/local/share/texmf on Unix systems.
The output of
kpsewhich -var-value=TEXMFLOCAL
is probably what you want)
Create directories
mkdir $(TEXMF)/fonts/source/bguq/
mkdir $(TEXMF)/fonts/tfm/bguq/
mkdir $(TEXMF)/tex/latex/bguq/
and copy files
cp *.mf $(TEXMF)/fonts/source/bguq/
cp *.tfm $(TEXMF)/fonts/tfm/bguq/
cp bguq.sty $(TEXMF)/tex/latex/bguq/
cp Ubguq*.fd $(TEXMF)/tex/latex/bguq/
Your TeX distribution may expect you to update its cache
of files -- if using TeXLive run
mktexlsr
Installing the PostScript files is more difficult and
depends on your OS and TeX distribution. For TeXLive
on Linux
cp *.pfb $(TEXMF)/fonts/type1/bguq/
cp bguq.map $(TEXMF)/fonts/map/dvips/
cp bguq.cfg $(TEXMF)/tex/latex/bguq/
then run
mktexlsr
updmap-sys --enable Map=bguq.map
For other systems, or in case of problems see
http://www.tug.org/fonts/fontinstall.html
Testing
-------
To test, run
latex bguq.dtx
and view the file bguq.dvi, then
pdflatex bguq.dtx
and view bguq.pdf
$Id: INSTALL,v 1.1 2012/07/17 22:50:41 jjg Exp $
|