Hi,
In Latex i have written \cite{} to cite my reference. When my file is compiled to PDF file. I want when i click on the number which appeared this will will take me to reference page and point out the particular reference corresponding to the citation number.
What to add with \cite{} to make it working?
Many thanks
Nasser.
BibTeX, biblatex and biber ⇒ \cite{} Hyperlink to references
NEW: TikZ book now 40% off at Amazon.com for a short time.

\cite{} Hyperlink to references
You need to load the hyperref package. See its documentation for more info.
Re: \cite{} Hyperlink to references
Hi,
Thanks for your quick reply. I got from another forum this answer:
hyperref cannot make a hyperlink from \cite{} reference. You should try natbib package instead (sic — you should use cite or natbib, not two of them. And natbib sometimes conflicts with hyperref package).
What is your feedback?
Anyway i will download the hyperref and try your suggestion.
Regards,
Nasser.
Thanks for your quick reply. I got from another forum this answer:
hyperref cannot make a hyperlink from \cite{} reference. You should try natbib package instead (sic — you should use cite or natbib, not two of them. And natbib sometimes conflicts with hyperref package).
What is your feedback?
Anyway i will download the hyperref and try your suggestion.
Regards,
Nasser.
\cite{} Hyperlink to references
That is simply untrue. Hyperref has no problem creating hyperlinks for citations using the \cite command. It is also completely false that natbib conflicts with hyperref. As with anything, you should read their documentation, but in general, the two work well together. Natbib on its own does not provide hyperlinked citations: it does no only in conjunction with hyperref.nasser wrote: hyperref cannot make a hyperlink from \cite{} reference. You should try natbib package instead (sic — you should use cite or natbib, not two of them. And natbib sometimes conflicts with hyperref package).
Perhaps what they had in mind what that natbib provides some extra commands like \citet and \citep, etc., for more fine grained control over citations, and in general, when using natbib, it is better to use one of those than \cite. But \cite still works. Or perhaps they had in mind some conflict between natbib and the cite package, which is different than the \cite command.
In any case, there's no reason at all to use natbib if all you want are hyperlinked citations: just add the hyperref package.
If you're having a particular problem with these packages not working well together, post a minimal working example.
Re: \cite{} Hyperlink to references
Hyperref and cite have some well-known conflicts. Listing them in the preamble at the very end of the preamble as
\usepackage{hyperref}
\usepackage{cite}
Often works, but not always. Using the natbib package instead of cite is a lot more reliable.
\usepackage{hyperref}
\usepackage{cite}
Often works, but not always. Using the natbib package instead of cite is a lot more reliable.