pdf 連結不適用於 Latex/dvips/pstopdf 執行

pdf 連結不適用於 Latex/dvips/pstopdf 執行

我有這個簡單的 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 文件,但該連結不起作用。我不得不使用pstopdf代替,ps2pdf因為該命令在我的系統中不可用(TeXLive 2014)。

在此輸入影像描述

可能出了什麼問題?

我需要使用latex/dvips/pstopdf命令路徑,因為我需要編譯 TeX 程式碼https://github.com/daly/literateclojure;否則我會得到編譯錯誤。

答案1

問題是我用過pstopdf,沒有ps2pdf。 TL2014 發行版似乎沒有ps2pdf,所以我必須ps2pdf使用 Mac OS X 的brew 中的 Ghostscript進行安裝。

brew install ghostscript

相關內容