BibTeX, biblatex and biber ⇒ \cite{} Hyperlink to references
\cite{} Hyperlink to references
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.
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
\cite{} Hyperlink to references
Re: \cite{} Hyperlink to references
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
\usepackage{hyperref}
\usepackage{cite}
Often works, but not always. Using the natbib package instead of cite is a lot more reliable.