次のような単純な LaTeX ファイルがあります:
\documentclass{book}
\usepackage{hyperref}
\hypersetup{%
linkcolor=blue,
colorlinks=true,% hyperlinks will be black
pdfborderstyle={/S/U/W 1}% border style with underline of width 1pt
}
\begin{document}
\tableofcontents
\section{Hello}
Hello.
\section{World}
World.
\end{document}
次の内容を含む PDF リンク ドキュメントを取得しようとしている場合:
latex hello.tex
latex hello.tex
dvips hello.dvi
pstopdf hello.ps
青いリンクが付いた PDF ファイルがありますが、リンクが機能しません。コマンドが私のシステム (TeXLive 2014) で使用できないため、pstopdf
の代わりにを使用する必要がありました。ps2pdf
何が問題なのでしょうか?
latex/dvips/pstopdf
TeXコードをコンパイルする必要があるので、コマンドパスを使用する必要があります。https://github.com/daly/literateclojure; そうしないとコンパイル エラーが発生します。
答え1
問題は、pstopdf
ではなく を使用したことですps2pdf
。TL2014 ディストリビューションには が含まれていないようで、 Mac OS X 用の brew から ghostscript を使用してps2pdf
インストールする必要がありました。ps2pdf
brew install ghostscript