如何链接到定义中的参考文献?

如何链接到定义中的参考文献?

我想添加一个指向我从中获取该定义的研究的链接。

我已尝试过,但是没有用。

\documentclass[parskip=full, 12pt]{article}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{mydef}{Definition}

\begin{document}
\section{Intro}
\begin{mydef}\label{[1]}
Let $G$ be a group, $H$ a subgroup of $G$; for $a,b \in G$ we say $a$ is congruent to $b$ mod $H$, written as $a \equiv b$ mod $H$ if $ab^{-1} \in H$.
\end{mydef}
\end{document}

在此处输入图片描述

问题 :我希望 $1$ 出现在 [] 内而不是 $(1)$ 内,并且当我点击 $1$ 时,它会将我重定向到论文

答案1

我怀疑这i是您参考书目中的 bib 单位名称(这样的命名不是一个好主意):

\documentclass[parskip=full, 12pt]{article}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{mydef}{Definition}

\usepackage{hyperref}

\begin{document}
\section{Intro}
\begin{mydef}\textup{\cite{1}}
Let $G$ be a group, $H$ a subgroup of $G$; for $a,b \in G$ we say $a$ is congruent to $b$ mod $H$, written as $a \equiv b$ mod $H$ if $ab^{-1} \in H$.
\end{mydef}
\end{document}

在此处输入图片描述

当您添加参考书目时,这应该可以工作(而不是?会出现1,单击它会将您移动到这个bib单元)。至少需要两个汇编。

相关内容