Hi
The package hyperref provides a rich set of options to set pdftitle, pdfauthor etc. along with creating links.
Can I use all the other features of this package without creating the links ?
I want to disable creation of the hyper links but want to be able to set pdf title, pdfauthor and pdfkeywords
Any help will be greatly appreciated.
Thanks,
Page Layout ⇒ hyperref without hyperlinks
NEW: TikZ book now 40% off at Amazon.com for a short time.

hyperref without hyperlinks
You don't need hyperref to do so. It suffices to use some command documented in the pdftex manual. For example,
Code: Select all
\documentclass{article}
\pdfinfo{
/Title (example.pdf)
/Creator (TeX)
/Producer (pdfTeX 1.40.11)
/Author (Tom and Jerry)
/CreationDate (D:20061226154343+01’00’)
/ModDate (D:20061226155343+01’00’)
/Subject (Example)
/Keywords (mouse, cat) }
\begin{document}
Hello world
\end{document}
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
Re: hyperref without hyperlinks
Hi Juanjo
Thanks for the reply. But I am not using pdflatex or pdftex. I am using latex, dvips and ps2pdf to generate the pdf.
Thanks for the reply. But I am not using pdflatex or pdftex. I am using latex, dvips and ps2pdf to generate the pdf.