1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacTeXの始め方

Last updated at Posted at 2019-08-06

*** 備忘録です。間違い等があればご指摘ください。 ***

概要

  • MacTeXをインストールする。
  • インストールにはHomeBrewを使用する。
  • macOS付属のヒラギノフォントを使用する(MacTeXで作成したpdfファイルに埋め込む)。
  • 統合環境としてはTeXShopを使用する。

MacTeXをインストールする

$ brew update  <-- Homebrew本体およびformulaを最新版に更新
$ brew upgrade  <-- インストール済みのパッケージを最新版にアップグレード
$ brew cask install mactex  <-- MacTeXをインストール
$ sudo tlmgr update --self --all  <-- TeX Liveを最新版にアップデート
$ sudo tlmgr paper a4  <-- 用紙サイズをA4に設定

ヒラギノフォントを使用する

$ sudo tlmgr repository add http://contrib.texlive.info/current tlcontrib
$ sudo tlmgr pinning add tlcontrib '*'
  <-- 必要なパッケージが入っているTLContribを登録
$ sudo tlmgr install japanese-otf-nonfree japanese-otf-uptex-nonfree ptex-fontmaps-macos cjk-gs-integrate-macos
  <-- 必要なパッケージをインストール
$ sudo cjk-gs-integrate-macos --link-texmf --force
$ sudo mktexlsr
  <-- フォントのmapファイルを更新
$ sudo kanji-config-updmap-sys --jis2004 hiragino-highsierra-pron
  <-- ヒラギノフォントを埋め込むためのmapファイルを設定

TeXShopを設定する

TeXShopを起動(アプリケーション/TeX/内にある)>「TeXShop」メニュー >「環境設定...」> 「書類」タブ >「設定プロファイル」>「pTeX (ptex2pdf)」

補足

  • TeX LiveはTeXのティストリビューション。ただし、書籍等に付録できるフリーのもののみをパッケージしている。それ以外のものはTLContrib(TeX Liveにcontributeする)で配布。
  • japanese-otf-nonfreeとjapanese-otf-uptex-nonfreeは日本語のOpenTypeフォント。
  • 以下のコマンドでフォントのmapファイルを確認できる。
$ kanji-config-updmap-sys status
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?