latex:我可以创建一个 link 到 "References" 部分吗?
latex: Can I create a link to "References" section?
我正在使用 thebibliography 环境来放置一些参考资料;手动而不是使用 Bibtex。
有没有办法从文本创建一个超级 link 以跳转到参考文献的顶部?
\documentclass[12pt]{article}
\begin{document}
Reviewed record documents \cite{dailyConstructionNotes}
\begin{thebibliography}{}
\bibitem {dailyNotes} Daily Reports.
\end{thebibliography}
\end{document}
如果加载 hyperref
包,所有 \cite
命令将自动创建一个 link 参考书目。
如果您明确想跳转到参考文献的顶部,您可以添加一个超级目标:
\documentclass[12pt]{article}
\usepackage{hyperref}
\begin{document}
Reviewed record documents \cite{dailyNotes}
\hyperlink{foo}{top of bibliography}
\newpage
\hypertarget{foo}{}
\begin{thebibliography}{1}
\bibitem {dailyNotes} Daily Reports.
\end{thebibliography}
\end{document}
我正在使用 thebibliography 环境来放置一些参考资料;手动而不是使用 Bibtex。 有没有办法从文本创建一个超级 link 以跳转到参考文献的顶部?
\documentclass[12pt]{article}
\begin{document}
Reviewed record documents \cite{dailyConstructionNotes}
\begin{thebibliography}{}
\bibitem {dailyNotes} Daily Reports.
\end{thebibliography}
\end{document}
如果加载 hyperref
包,所有 \cite
命令将自动创建一个 link 参考书目。
如果您明确想跳转到参考文献的顶部,您可以添加一个超级目标:
\documentclass[12pt]{article}
\usepackage{hyperref}
\begin{document}
Reviewed record documents \cite{dailyNotes}
\hyperlink{foo}{top of bibliography}
\newpage
\hypertarget{foo}{}
\begin{thebibliography}{1}
\bibitem {dailyNotes} Daily Reports.
\end{thebibliography}
\end{document}