不使用 \cite 命令引用带有参考文献 ID 的超链接

不使用 \cite 命令引用带有参考文献 ID 的超链接

我已经使用LuaLaTeX Ver: 1.12.0。我已经XML to LaTeX使用进行转换Lua Script。我已经按照 XML 维护了交叉链接。我想要 hyperrefcross-link需要转到相应的 hyperref cross-id。单击时\cite它会转到相应的位置。但使用时\hyperref它不会转到相应的 ID。

我的 MWE 是:

\documentclass{article}
\usepackage{amsmath,fontspec,luacolor,blindtext}
\usepackage{hyperref}
\hypersetup{colorlinks,citecolor=blue}

\setmainfont{Arial Unicode MS}
\begin{document}
\title{Article Title Here}
\author{Author Here}
\maketitle

\section{Introduction}

The investigations of cylindrically symmetric spacetimes can be traced back as far as to 1919 when Levi-Civita (LC) discovered \textbf{HREF Command} [\href{cqgab7bbabib1}{1}] a class of \textbf{CITE Command} [\cite{cqgab7bbabib1}{1}]solutions of Einstein’s vacuum field equations, corresponding to static cylindrical spacetimes.

\blindtext[5]

\begin{thebibliography}{000}
\bibitem{cqgab7bbabib1}{Aasi J et al., LIGO Scientific and VIRGO Collaborations (2014) Constraints on cosmic strings from the LIGO-Virgo gravitational-wave detectors \textit{Phys. Rev. Lett.} \textcolor{blue}{\textbf{112}}.} 

\bibitem{cqgab7bbabib2}{Abbott B P et al., LIGO and Virgo Collaborations (2016) Astrophysical implications of the binary black hole merger GW150914 \textit{Astrophys. J. Lett.} \textcolor{blue}{\textbf{818}}.}
\end{thebibliography}
\end{document}

如何实现这一点?

相关内容