Make the manual run through pdflatex.
This commit is contained in:
parent
a7517a3f05
commit
fd54fde444
|
@ -10,12 +10,22 @@
|
||||||
% tex2page defines \url and hyperref loads the package url
|
% tex2page defines \url and hyperref loads the package url
|
||||||
% but setting \url to \relax satisfies \newcommand
|
% but setting \url to \relax satisfies \newcommand
|
||||||
\let\url\relax
|
\let\url\relax
|
||||||
|
\input{pdfcond}
|
||||||
|
\ifpdf
|
||||||
|
\usepackage[pdftex,hyperindex,
|
||||||
|
pdftitle={scsh manual, release 0.6.1},
|
||||||
|
pdfauthor={Olin Shivers, Brian D.~Carlstrom, Martin Gasbichler,
|
||||||
|
and Mike Sperber}
|
||||||
|
colorlinks=true,linkcolor=blue,pagecolor=blue,urlcolor=blue,
|
||||||
|
pdfstartview=FitH,pdfview=FitH]{hyperref}
|
||||||
|
\else
|
||||||
\usepackage[dvipdfm,hyperindex,hypertex,
|
\usepackage[dvipdfm,hyperindex,hypertex,
|
||||||
pdftitle={scsh manual, release 0.6.1},
|
pdftitle={scsh manual, release 0.6.1},
|
||||||
pdfauthor={Olin Shivers, Brian D.~Carlstrom, Martin Gasbichler,
|
pdfauthor={Olin Shivers, Brian D.~Carlstrom, Martin Gasbichler,
|
||||||
and Mike Sperber}
|
and Mike Sperber}
|
||||||
colorlinks=true,linkcolor=blue,pagecolor=blue,urlcolor=blue,
|
colorlinks=true,linkcolor=blue,pagecolor=blue,urlcolor=blue,
|
||||||
pdfstartview=FitH,pdfview=FitH]{hyperref}
|
pdfstartview=FitH,pdfview=FitH]{hyperref}
|
||||||
|
\fi
|
||||||
\endtexonly
|
\endtexonly
|
||||||
|
|
||||||
% These fonts are good choices for screen-readable pdf, but the man needs
|
% These fonts are good choices for screen-readable pdf, but the man needs
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
\newif\ifpdf
|
||||||
|
\ifx\pdfoutput\undefined
|
||||||
|
\pdffalse % we are not running PDFLaTeX
|
||||||
|
\else
|
||||||
|
\pdfoutput=1 % we are running PDFLaTeX
|
||||||
|
\pdftrue
|
||||||
|
\fi
|
||||||
|
% Then use your new variable \ifpdf
|
||||||
|
% \ifpdf
|
||||||
|
% \usepackage[pdftex]{graphicx}
|
||||||
|
% \pdfcompresslevel=9
|
||||||
|
% \else
|
||||||
|
% \usepackage{graphicx}
|
||||||
|
% \fi
|
Loading…
Reference in New Issue