2
votes
1answer
68 views

Option clash with hyperref

If anyone has come across this issue when dealing with uploading tex files on arxiv, their experience would be of immense help: I am trying to upload a .tex document to arxiv. I upload my .tex file ...
2
votes
1answer
141 views

How to add hyperref package at my paper?

I have problem about adding hyperref package to my paper. You can see the details in the following. You can also see my edited class as follows. % ...
3
votes
1answer
290 views

Hyperref option clash error because unknown package requires/loads it too

I am currently hunting for errors in my template and these two I cannot solve after reading the log and researching: ! LaTeX Error: Option clash for package hyperref. See the LaTeX manual or LaTeX ...
2
votes
1answer
925 views

URL package installed but cannot be found by pdflatex [closed]

I recently installed a full version of TeXLive 2012 (around 3.2 GB installation). Following is a simple LaTeX code that I am unable to compile: \listfiles \documentclass{article} ...
3
votes
2answers
313 views

How to outsource \hypersetup to an external file?

I use the hyperref package and defined custom settings as follows: \usepackage{color} \usepackage[dvipsnames]{xcolor} \usepackage{url} \usepackage{hyperref} \hypersetup{ bookmarks=true, ...
2
votes
1answer
235 views

Apparent conflict between hyperref and tex4ht packages

I am trying to use both the hyperref and tex4ht packages to format a textbook into a web textbook. Everything works except if I comment out chapter one, but if I include chapter one in the document, ...
10
votes
1answer
231 views

Using \BeforePackage to load a package before hyperref does not work

I am using the lipics document class, which includes hyperref. I want to load the float package, which should be loaded before hyperref, without changing the document class. As suggested in this ...
9
votes
3answers
233 views

Hyperref is loaded by the class, and I need to load packages that are supposed to be loaded before

I am using the lipics documentclass, which loads hyperref. Since I want my figures boxed, I added the following \usepackage{float} \floatstyle{boxed} \restylefloat{figure} The problem: I receive ...
0
votes
1answer
84 views

What hyper referencing package is compatible with MiKTeX 1.20e?

I am looking for the basic functionality of the hyperref in a package that would be compatible with MiKTeX 1.20e. (This is needed for uploading files to an organization which supports MiKTeX 1.20e but ...
5
votes
1answer
179 views

Navigator + hyperref

Quick question: is the navigator package compatible with the hyperref package? It seems as though their responsibilities overlap somehow... In which order should one load them? Are there any other ...
1
vote
1answer
125 views

Hyphens and minuses are MIA.

I am experiencing a strange bug involving the omission of hyphens in the .dvi file. % This is a sample LaTeX input file. (Version of 12 August 2004.) % % A '%' character causes TeX to ignore all ...
2
votes
2answers
205 views

Hyperref mysteriously enabled or who loaded hyperref

I can't figure out where do I load the hyperref package. I know it sounds odd, but I scanned all my preamble and couldn't find a single \usepackage{hyperref}. I feel really stupid, but I don't know ...
25
votes
2answers
1k views

Is hyperref really the best way to add metadata to a TeX file?

So I know one of hyperref's features is that it can add metadata to you PDFs. This is a nice feature and if you're putting stuff online, it's good to include metadata. But is the hyperref package ...
74
votes
9answers
4k views

Which packages should be loaded after hyperref instead of before?

The hyperref documentation says: "Make sure it comes last of your loaded packages". The reason is that it redefines many LaTeX commands. It's a rule of thumb that helps to avoid errors. However, ...