OS Xに LaTex を導入する手順
- https://texwiki.texjp.org/?LaTeX入門#d4959206
- http://tug.org/mactex/
- http://konn-san.com/prog/why-not-latexmk.html
- http://skim-app.sourceforge.net/
インストール
pkgファイルのダウンロード
https://texwiki.texjp.org/?MacTeX
いくつか種類があるようだが、とりあえずMacTex
というのをインストールしてみる。
ダウンロードにかなり時間がかかる。
アップグレード
sudo tlmgr update --self --all
これもだいぶ時間がかかった。 TexWikiのサイトだと他にも日本語の設定についていくつかの手順が記されているが、それらは飛ばしても問題なかった。
Hello World
hello.tex:
\document{jaarticle}
\begin{document}
Hello, world!
% This is a comment.
\end{docuemnt}
# Compile and generate PDF
platex hello.tex
dvipdfmx hello.dvi
# Generate PDF By one command
ptex2pdf -l hello.tex
latexmk
コマンドを使うと色々簡単にできてすごい!
http://konn-san.com/prog/why-not-latexmk.html
準備:
# latexmk is awesome!
# Generate PDF
latexmk hello.tex
# Watch and (re-)generate PDF when the file changed
latexmk -pvc hello.tex