我想在文本中添加参考链接,这样通过点击它,我就可以转到该特定参考的参考部分末尾。例如,示例在 [1] 中给出(此 1 应为超链接)。我该怎么做?
答案1
工作示例:
\documentclass[a4paper,14pt]{extreport}
\usepackage[left=1.5cm,right=1.5cm,
top=1.5cm,bottom=2cm,bindingoffset=0cm]{geometry}
\usepackage[english]{babel}
\usepackage{lipsum}
\usepackage{hyperref}
\begin{document}
%\renewcommand{\bibname}{new bib name} %uncoment it if You want to change the name of bibliography part
\lipsum[1]\cite{lit1}
\newpage
\begin{thebibliography}{9}% this number shows You how many sourses can You use (now You can use up to 9)
\bibitem{lit1} Your author here.
\end{thebibliography}
\end{document}