This file is indexed.

/usr/share/doc/latex-cjk-common/README.Debian-msgothic is in latex-cjk-japanese 4.8.2+git20111216-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
72
73
74
75
Japanese Microsoft Gothic TTF
-----------------------------

Thanks to Gernot Hassenplug for this HOWTO.

### Warning: this HOWTO is unfinished; there seems to be a bug in either
###          Fontforge or vertical.pe, blocking the build process midway.
###          I hope this will be fixed at the next upload of latex-cjk-japanese.

This HOWTO will guide you through the process of getting Microsoft's Japanese
font "Gothic" to work with CJK on TeX (latex, dvipdfmx and pdflatex) in the
event that you already have a legal copy of the said font.

On a standard Debian or Ubuntu installation, TEXMFLOCAL can be considered
the same as /usr/local/share/texmf/.

As root, make the directories:
$ mkdir -p  /usr/local/share/fonts/truetype/microsoft

Still as root, make "msgothic.ttf" available both to X11 and TeX:
$ cp msgothic.ttf /usr/local/share/fonts/truetype/microsoft/
$ cd /usr/local/share/texmf/fonts/truetype
$ ln -s ../../../fonts/truetype/microsoft/

Linking the font to the TEXMFLOCAL tree will have no effect on latex, dvipdfmx
or pdflatex, but it is useful if you plan to use the next generation set of
TeX tools such as XeTeX.


As a regular user, build the fonts (will take some building time):
$ mkdir ~/msgothic
$ cd ~/msgothic
$ fontforge -script /usr/share/latex-cjk-common/utils/subfonts/subfonts.pe /usr/local/share/fonts/truetype/microsoft/msgothic.ttf msgothic /usr/share/texmf/fonts/sfd/Unicode.sfd

Now some vertical fonts:
# PROBLEM: fontforge version 20071110 will segment!  msgothicv.tfm will not be created,
# rendering the third Perl command below impossible to run.
$ fontforge -script /usr/share/latex-cjk-common/utils/subfonts/vertical.pe /usr/local/share/fonts/truetype/microsoft/msgothic.ttf msgothicv
$ fontforge -script /usr/share/latex-cjk-common/utils/subfonts/vertref.pe /usr/local/share/fonts/truetype/microsoft/msgothic.ttf msgothicvr
# Impossible to make with due to a possible bug in Fontforge:
$ perl /usr/share/latex-cjk-common/utils/subfonts/clonevf.pl msgothicv msgothv
$ perl uni2sfd.pl $(uninamestem) $(sfddir)/$(encoding).sfd $(sfdnamestem) $(codingscheme)

Clean up:
$ rm -f *.enc

Create a map file for the Type1 fontsto be embedded successfully:
$ for i in *.tfm; do echo "${i%.tfm} ${i%.tfm} < ${i%.tfm}.pfb" >> msgothic.map

Create cXXmsgothic.fd:
$ # UNTESTED: perl makefdx.pl $(uninamestem)vr.afm $(sfddir)/$(encoding).sfd c$(nfss_fontencoding) $(namestem)

Create c70msgothic.fd:
$ # UNTESTED: perl makefdx.pl -u $(uninamestem)vr.afm $(sfddir)/Unicode.sfd c70$ $(namestem)

% This is c70msgothic.fd for the CJK package
% created by Gernot Hassenpflug based on the tutorial
% by Edward G. J. Lee in his blog "LJG Font Notes"
\ProvidesFile{c70msgothic.fd}
\DeclareFontFamily{C70}{msgothic}{\hyphenchar \font\m@ne}
\DeclareFontShape{C70}{msgothic}{m}{n}{<-> CJK * msgothic}{}
\DeclareFontShape{C70}{msgothic}{bx}{n}{<-> CJKb * msgothic}{\CJKbold}
\endinput

Local installation: [change ~/ with TEXMFLOCAL to get a user-wide installation]
$ mkdir ~/texmf/fonts/map/dvips/microsoft
$ cp msgothic.map ~/texmf/fonts/map/dvips/microsoft/
$ mkdir ~/texmf/fonts/{tfm,type1}/microsoft
$ msgothic*.tfm ~/texmf/fonts/tfm/microsoft/
$ msgothic*.pfb ~/texmf/fonts/type/microsoft/
$ cp c70msgothic.fd ~/texmf/tex/latex/CJK/UTF8/

$ texhash ~/texmf
$ update-updmap
$ updmap --enable Map msgothic.map # Use updmap-sys if you are root.