使用 hyperref 进行引用

使用 hyperref 进行引用

我需要用自定义文本引用参考文献。然而,我不能使其工作。请参见以下示例。

\documentclass{article}

\usepackage{hyperref}

\begin{document}

See \hyperref[ct1]{the post}.

\begin{thebibliography}{99}
\bibitem{ct1} bkarpuz, Using hyperref for a citation, StackExchange, 2016.
\end{thebibliography}

\end{document}

我实际上在正文的某个地方以编号形式将 \cite{ct1} 与我手稿的其他参考文献一起使用。但在论文摘要中,期刊希望我们以 [Journal, Vol, (Year), No, Pages] 而不是 [RefNo] 的形式提及。我只是试图将其链接起来。

答案1

像这样吗?

在此处输入图片描述

\documentclass{article}
\usepackage{cite}
\renewcommand\citeleft{}  % no opening or closing brackets
\renewcommand\citeright{}
\usepackage[colorlinks,citecolor=blue]{hyperref}

\begin{document}
See \cite{ct1}.

\begin{thebibliography}{99}

\bibitem[The post]{ct1} bkarpuz, Using hyperref for a citation, StackExchange, 2016.

\end{thebibliography}
\end{document}

相关内容