A have a LaTeX paper I want to submit to the EDAS system. EDAS doesn't want papers to have links and suggests to 'remove the hyperref package from your file'. However, if I do that, my compilation breaks because of some hyperref options in my tex files (and also \url definitions, I think).
I want to keep everything as it is, and just disable the linking feature of hyperref to create a link-free version of my PDF. How can I do this?
Following the hyperref documentation I did \usepackage[draft]{hyperref}, and that seems to work. But that doesn't seem to be the official way. And I don't want to test multiple times if EDAS accepts it or not, because all authors get notified each time I submit a new version. Also, the [draft] option doesn't remove the PDF bookmarks either, which EDAS also doesn't want.
\usepackage[disablelinks]{hyperref}or similar, but I scanned the documentation and didn't find such a thing. – Rabarberski Apr 25 '12 at 15:22\usepackage[options]{nohyperref}? This should be a package that defines everythinghyperrefdoes, but does nothing. – egreg Apr 25 '12 at 15:26\url{http://...}entries in my bibtex file (.bbl):undefined control sequence– Rabarberski Apr 25 '12 at 15:33\usepackage{url}– Boris Apr 25 '12 at 15:35\hyperrefactually loadsurl, butnohyperrefdoesn't. :( – egreg Apr 25 '12 at 15:37nohyprerefdoes not seem to accept[pdftex,unicode]as options. – sup Aug 21 '15 at 15:50