├── .gitignore ├── ChangeLog.pre-git ├── README ├── cmap ├── 2004-H └── 2004-V ├── examples ├── otf-sample-04.tex ├── otf-sample.tex ├── ptex-sample.tex └── series-compare.tex ├── jis04cmap_exp ├── JISX0213-2004-H ├── JISX0213-2004-V ├── README ├── cmapdec.lua ├── jis-h04-httk.pdf ├── jis-h04-httk.tex ├── jis-v04-vttk.pdf ├── jis-v04-vttk.tex ├── jisx0213-2004-8bit-std.txt └── mk_jis_to_aj16_cid.lua ├── maps ├── hiragino-elcapitan-pron │ ├── otf-hiragino-elcapitan-pron.map │ ├── otf-up-hiragino-elcapitan-pron.map │ ├── ptex-hiragino-elcapitan-pron-04.map │ ├── ptex-hiragino-elcapitan-pron.map │ ├── uptex-hiragino-elcapitan-pron-04.map │ └── uptex-hiragino-elcapitan-pron.map ├── hiragino-elcapitan │ ├── otf-hiragino-elcapitan.map │ ├── otf-up-hiragino-elcapitan.map │ ├── ptex-hiragino-elcapitan-04.map │ ├── ptex-hiragino-elcapitan.map │ ├── uptex-hiragino-elcapitan-04.map │ └── uptex-hiragino-elcapitan.map ├── hiragino-pron │ ├── otf-hiragino-pron.map │ ├── otf-up-hiragino-pron.map │ ├── ptex-hiragino-pron-04.map │ ├── ptex-hiragino-pron.map │ ├── uptex-hiragino-pron-04.map │ └── uptex-hiragino-pron.map ├── hiragino │ ├── otf-hiragino.map │ ├── otf-up-hiragino.map │ ├── ptex-hiragino-04.map │ ├── ptex-hiragino.map │ ├── uptex-hiragino-04.map │ └── uptex-hiragino.map ├── ipa │ ├── otf-ipa.map │ ├── otf-up-ipa.map │ ├── ptex-ipa.map │ └── uptex-ipa.map ├── ipaex │ ├── otf-ipaex.map │ ├── otf-up-ipaex.map │ ├── ptex-ipaex.map │ └── uptex-ipaex.map ├── kozuka-pr6 │ ├── otf-kozuka-pr6.map │ ├── otf-up-kozuka-pr6.map │ ├── ptex-kozuka-pr6-04.map │ ├── ptex-kozuka-pr6.map │ ├── uptex-kozuka-pr6-04.map │ └── uptex-kozuka-pr6.map ├── kozuka-pr6n │ ├── otf-kozuka-pr6n.map │ ├── otf-up-kozuka-pr6n.map │ ├── ptex-kozuka-pr6n-04.map │ ├── ptex-kozuka-pr6n.map │ ├── uptex-kozuka-pr6n-04.map │ └── uptex-kozuka-pr6n.map ├── kozuka │ ├── otf-kozuka.map │ ├── otf-up-kozuka.map │ ├── ptex-kozuka-04.map │ ├── ptex-kozuka.map │ ├── uptex-kozuka-04.map │ └── uptex-kozuka.map ├── morisawa-pr6n │ ├── otf-morisawa-pr6n.map │ ├── otf-up-morisawa-pr6n.map │ ├── ptex-morisawa-pr6n-04.map │ ├── ptex-morisawa-pr6n.map │ ├── uptex-morisawa-pr6n-04.map │ └── uptex-morisawa-pr6n.map ├── morisawa │ ├── otf-morisawa.map │ ├── otf-up-morisawa.map │ ├── ptex-morisawa-04.map │ ├── ptex-morisawa.map │ ├── uptex-morisawa-04.map │ └── uptex-morisawa.map ├── ms │ ├── otf-ms.map │ ├── otf-up-ms.map │ ├── ptex-ms.map │ └── uptex-ms.map ├── noEmbed │ ├── otf-noEmbed.map │ ├── otf-up-noEmbed.map │ ├── ptex-noEmbed-04.map │ ├── ptex-noEmbed.map │ ├── uptex-noEmbed-04.map │ └── uptex-noEmbed.map ├── yu-osx │ ├── otf-up-yu-osx.map │ ├── otf-yu-osx.map │ ├── ptex-yu-osx-04.map │ ├── ptex-yu-osx.map │ ├── uptex-yu-osx-04.map │ └── uptex-yu-osx.map ├── yu-win │ ├── otf-up-yu-win.map │ ├── otf-yu-win.map │ ├── ptex-yu-win.map │ └── uptex-yu-win.map └── yu-win10 │ ├── otf-up-yu-win10.map │ ├── otf-yu-win10.map │ ├── ptex-yu-win10.map │ └── uptex-yu-win10.map ├── script ├── kanji-config-updmap-sys.sh ├── kanji-config-updmap.pl ├── kanji-fontmap-creator.pl └── updmap-otf.sh └── tools ├── mkmap.lua └── release.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.pre-git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/ChangeLog.pre-git -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/README -------------------------------------------------------------------------------- /cmap/2004-H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/cmap/2004-H -------------------------------------------------------------------------------- /cmap/2004-V: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/cmap/2004-V -------------------------------------------------------------------------------- /examples/otf-sample-04.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/examples/otf-sample-04.tex -------------------------------------------------------------------------------- /examples/otf-sample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/examples/otf-sample.tex -------------------------------------------------------------------------------- /examples/ptex-sample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/examples/ptex-sample.tex -------------------------------------------------------------------------------- /examples/series-compare.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/examples/series-compare.tex -------------------------------------------------------------------------------- /jis04cmap_exp/JISX0213-2004-H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/JISX0213-2004-H -------------------------------------------------------------------------------- /jis04cmap_exp/JISX0213-2004-V: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/JISX0213-2004-V -------------------------------------------------------------------------------- /jis04cmap_exp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/README -------------------------------------------------------------------------------- /jis04cmap_exp/cmapdec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/cmapdec.lua -------------------------------------------------------------------------------- /jis04cmap_exp/jis-h04-httk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/jis-h04-httk.pdf -------------------------------------------------------------------------------- /jis04cmap_exp/jis-h04-httk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/jis-h04-httk.tex -------------------------------------------------------------------------------- /jis04cmap_exp/jis-v04-vttk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/jis-v04-vttk.pdf -------------------------------------------------------------------------------- /jis04cmap_exp/jis-v04-vttk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/jis-v04-vttk.tex -------------------------------------------------------------------------------- /jis04cmap_exp/jisx0213-2004-8bit-std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/jisx0213-2004-8bit-std.txt -------------------------------------------------------------------------------- /jis04cmap_exp/mk_jis_to_aj16_cid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/jis04cmap_exp/mk_jis_to_aj16_cid.lua -------------------------------------------------------------------------------- /maps/hiragino-elcapitan-pron/otf-hiragino-elcapitan-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan-pron/otf-hiragino-elcapitan-pron.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan-pron/otf-up-hiragino-elcapitan-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan-pron/otf-up-hiragino-elcapitan-pron.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan-pron/ptex-hiragino-elcapitan-pron-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan-pron/ptex-hiragino-elcapitan-pron-04.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan-pron/ptex-hiragino-elcapitan-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan-pron/ptex-hiragino-elcapitan-pron.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan-pron/uptex-hiragino-elcapitan-pron-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan-pron/uptex-hiragino-elcapitan-pron-04.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan-pron/uptex-hiragino-elcapitan-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan-pron/uptex-hiragino-elcapitan-pron.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan/otf-hiragino-elcapitan.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan/otf-hiragino-elcapitan.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan/otf-up-hiragino-elcapitan.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan/otf-up-hiragino-elcapitan.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan/ptex-hiragino-elcapitan-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan/ptex-hiragino-elcapitan-04.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan/ptex-hiragino-elcapitan.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan/ptex-hiragino-elcapitan.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan/uptex-hiragino-elcapitan-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan/uptex-hiragino-elcapitan-04.map -------------------------------------------------------------------------------- /maps/hiragino-elcapitan/uptex-hiragino-elcapitan.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-elcapitan/uptex-hiragino-elcapitan.map -------------------------------------------------------------------------------- /maps/hiragino-pron/otf-hiragino-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-pron/otf-hiragino-pron.map -------------------------------------------------------------------------------- /maps/hiragino-pron/otf-up-hiragino-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-pron/otf-up-hiragino-pron.map -------------------------------------------------------------------------------- /maps/hiragino-pron/ptex-hiragino-pron-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-pron/ptex-hiragino-pron-04.map -------------------------------------------------------------------------------- /maps/hiragino-pron/ptex-hiragino-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-pron/ptex-hiragino-pron.map -------------------------------------------------------------------------------- /maps/hiragino-pron/uptex-hiragino-pron-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-pron/uptex-hiragino-pron-04.map -------------------------------------------------------------------------------- /maps/hiragino-pron/uptex-hiragino-pron.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino-pron/uptex-hiragino-pron.map -------------------------------------------------------------------------------- /maps/hiragino/otf-hiragino.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino/otf-hiragino.map -------------------------------------------------------------------------------- /maps/hiragino/otf-up-hiragino.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino/otf-up-hiragino.map -------------------------------------------------------------------------------- /maps/hiragino/ptex-hiragino-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino/ptex-hiragino-04.map -------------------------------------------------------------------------------- /maps/hiragino/ptex-hiragino.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino/ptex-hiragino.map -------------------------------------------------------------------------------- /maps/hiragino/uptex-hiragino-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino/uptex-hiragino-04.map -------------------------------------------------------------------------------- /maps/hiragino/uptex-hiragino.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/hiragino/uptex-hiragino.map -------------------------------------------------------------------------------- /maps/ipa/otf-ipa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipa/otf-ipa.map -------------------------------------------------------------------------------- /maps/ipa/otf-up-ipa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipa/otf-up-ipa.map -------------------------------------------------------------------------------- /maps/ipa/ptex-ipa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipa/ptex-ipa.map -------------------------------------------------------------------------------- /maps/ipa/uptex-ipa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipa/uptex-ipa.map -------------------------------------------------------------------------------- /maps/ipaex/otf-ipaex.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipaex/otf-ipaex.map -------------------------------------------------------------------------------- /maps/ipaex/otf-up-ipaex.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipaex/otf-up-ipaex.map -------------------------------------------------------------------------------- /maps/ipaex/ptex-ipaex.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipaex/ptex-ipaex.map -------------------------------------------------------------------------------- /maps/ipaex/uptex-ipaex.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ipaex/uptex-ipaex.map -------------------------------------------------------------------------------- /maps/kozuka-pr6/otf-kozuka-pr6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6/otf-kozuka-pr6.map -------------------------------------------------------------------------------- /maps/kozuka-pr6/otf-up-kozuka-pr6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6/otf-up-kozuka-pr6.map -------------------------------------------------------------------------------- /maps/kozuka-pr6/ptex-kozuka-pr6-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6/ptex-kozuka-pr6-04.map -------------------------------------------------------------------------------- /maps/kozuka-pr6/ptex-kozuka-pr6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6/ptex-kozuka-pr6.map -------------------------------------------------------------------------------- /maps/kozuka-pr6/uptex-kozuka-pr6-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6/uptex-kozuka-pr6-04.map -------------------------------------------------------------------------------- /maps/kozuka-pr6/uptex-kozuka-pr6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6/uptex-kozuka-pr6.map -------------------------------------------------------------------------------- /maps/kozuka-pr6n/otf-kozuka-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6n/otf-kozuka-pr6n.map -------------------------------------------------------------------------------- /maps/kozuka-pr6n/otf-up-kozuka-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6n/otf-up-kozuka-pr6n.map -------------------------------------------------------------------------------- /maps/kozuka-pr6n/ptex-kozuka-pr6n-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6n/ptex-kozuka-pr6n-04.map -------------------------------------------------------------------------------- /maps/kozuka-pr6n/ptex-kozuka-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6n/ptex-kozuka-pr6n.map -------------------------------------------------------------------------------- /maps/kozuka-pr6n/uptex-kozuka-pr6n-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6n/uptex-kozuka-pr6n-04.map -------------------------------------------------------------------------------- /maps/kozuka-pr6n/uptex-kozuka-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka-pr6n/uptex-kozuka-pr6n.map -------------------------------------------------------------------------------- /maps/kozuka/otf-kozuka.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka/otf-kozuka.map -------------------------------------------------------------------------------- /maps/kozuka/otf-up-kozuka.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka/otf-up-kozuka.map -------------------------------------------------------------------------------- /maps/kozuka/ptex-kozuka-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka/ptex-kozuka-04.map -------------------------------------------------------------------------------- /maps/kozuka/ptex-kozuka.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka/ptex-kozuka.map -------------------------------------------------------------------------------- /maps/kozuka/uptex-kozuka-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka/uptex-kozuka-04.map -------------------------------------------------------------------------------- /maps/kozuka/uptex-kozuka.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/kozuka/uptex-kozuka.map -------------------------------------------------------------------------------- /maps/morisawa-pr6n/otf-morisawa-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa-pr6n/otf-morisawa-pr6n.map -------------------------------------------------------------------------------- /maps/morisawa-pr6n/otf-up-morisawa-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa-pr6n/otf-up-morisawa-pr6n.map -------------------------------------------------------------------------------- /maps/morisawa-pr6n/ptex-morisawa-pr6n-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa-pr6n/ptex-morisawa-pr6n-04.map -------------------------------------------------------------------------------- /maps/morisawa-pr6n/ptex-morisawa-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa-pr6n/ptex-morisawa-pr6n.map -------------------------------------------------------------------------------- /maps/morisawa-pr6n/uptex-morisawa-pr6n-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa-pr6n/uptex-morisawa-pr6n-04.map -------------------------------------------------------------------------------- /maps/morisawa-pr6n/uptex-morisawa-pr6n.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa-pr6n/uptex-morisawa-pr6n.map -------------------------------------------------------------------------------- /maps/morisawa/otf-morisawa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa/otf-morisawa.map -------------------------------------------------------------------------------- /maps/morisawa/otf-up-morisawa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa/otf-up-morisawa.map -------------------------------------------------------------------------------- /maps/morisawa/ptex-morisawa-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa/ptex-morisawa-04.map -------------------------------------------------------------------------------- /maps/morisawa/ptex-morisawa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa/ptex-morisawa.map -------------------------------------------------------------------------------- /maps/morisawa/uptex-morisawa-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa/uptex-morisawa-04.map -------------------------------------------------------------------------------- /maps/morisawa/uptex-morisawa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/morisawa/uptex-morisawa.map -------------------------------------------------------------------------------- /maps/ms/otf-ms.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ms/otf-ms.map -------------------------------------------------------------------------------- /maps/ms/otf-up-ms.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ms/otf-up-ms.map -------------------------------------------------------------------------------- /maps/ms/ptex-ms.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ms/ptex-ms.map -------------------------------------------------------------------------------- /maps/ms/uptex-ms.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/ms/uptex-ms.map -------------------------------------------------------------------------------- /maps/noEmbed/otf-noEmbed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/noEmbed/otf-noEmbed.map -------------------------------------------------------------------------------- /maps/noEmbed/otf-up-noEmbed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/noEmbed/otf-up-noEmbed.map -------------------------------------------------------------------------------- /maps/noEmbed/ptex-noEmbed-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/noEmbed/ptex-noEmbed-04.map -------------------------------------------------------------------------------- /maps/noEmbed/ptex-noEmbed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/noEmbed/ptex-noEmbed.map -------------------------------------------------------------------------------- /maps/noEmbed/uptex-noEmbed-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/noEmbed/uptex-noEmbed-04.map -------------------------------------------------------------------------------- /maps/noEmbed/uptex-noEmbed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/noEmbed/uptex-noEmbed.map -------------------------------------------------------------------------------- /maps/yu-osx/otf-up-yu-osx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-osx/otf-up-yu-osx.map -------------------------------------------------------------------------------- /maps/yu-osx/otf-yu-osx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-osx/otf-yu-osx.map -------------------------------------------------------------------------------- /maps/yu-osx/ptex-yu-osx-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-osx/ptex-yu-osx-04.map -------------------------------------------------------------------------------- /maps/yu-osx/ptex-yu-osx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-osx/ptex-yu-osx.map -------------------------------------------------------------------------------- /maps/yu-osx/uptex-yu-osx-04.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-osx/uptex-yu-osx-04.map -------------------------------------------------------------------------------- /maps/yu-osx/uptex-yu-osx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-osx/uptex-yu-osx.map -------------------------------------------------------------------------------- /maps/yu-win/otf-up-yu-win.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win/otf-up-yu-win.map -------------------------------------------------------------------------------- /maps/yu-win/otf-yu-win.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win/otf-yu-win.map -------------------------------------------------------------------------------- /maps/yu-win/ptex-yu-win.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win/ptex-yu-win.map -------------------------------------------------------------------------------- /maps/yu-win/uptex-yu-win.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win/uptex-yu-win.map -------------------------------------------------------------------------------- /maps/yu-win10/otf-up-yu-win10.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win10/otf-up-yu-win10.map -------------------------------------------------------------------------------- /maps/yu-win10/otf-yu-win10.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win10/otf-yu-win10.map -------------------------------------------------------------------------------- /maps/yu-win10/ptex-yu-win10.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win10/ptex-yu-win10.map -------------------------------------------------------------------------------- /maps/yu-win10/uptex-yu-win10.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/maps/yu-win10/uptex-yu-win10.map -------------------------------------------------------------------------------- /script/kanji-config-updmap-sys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/script/kanji-config-updmap-sys.sh -------------------------------------------------------------------------------- /script/kanji-config-updmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/script/kanji-config-updmap.pl -------------------------------------------------------------------------------- /script/kanji-fontmap-creator.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/script/kanji-fontmap-creator.pl -------------------------------------------------------------------------------- /script/updmap-otf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/script/updmap-otf.sh -------------------------------------------------------------------------------- /tools/mkmap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/tools/mkmap.lua -------------------------------------------------------------------------------- /tools/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/jfontmaps/HEAD/tools/release.sh --------------------------------------------------------------------------------