Page Layouthyperref without hyperlinks

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
akwatve
Posts: 2
Joined: Fri Apr 20, 2012 9:50 pm

hyperref without hyperlinks

Post by akwatve »

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,

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

hyperref without hyperlinks

Post by Juanjo »

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.
akwatve
Posts: 2
Joined: Fri Apr 20, 2012 9:50 pm

Re: hyperref without hyperlinks

Post by akwatve »

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.
Post Reply