In texstudio pdf compilation works fine using pdflatex.
But if I run cmd and pdflatex.exe with the same parameters, output pdf appears without hyperlinks (TOC and all hyperlinks in document are absent).
In cmd (c:\Program Files\MiKTeX 2.9\miktex\bin\x64>) I use the following command:
Code: Select all
pdflatex.exe -synctex=1 -interaction=
nonstopmode c:\test\1\2\test.tex -output-directory "C:\test\1\2"
In my preamble hyperlink support looks like:
Code: Select all
\usepackage[colorlinks,urlcolor=black,linkcolor=black,pagecolor=black]{hyperref}
What I'm doing wrong?