URL 的引用是否可以作为其生成的 PDF 中的可点击链接?

URL 的引用是否可以作为其生成的 PDF 中的可点击链接?

我想在数学论文中引用网页。我在 Mac 上使用 TeXShop。

以下是不起作用的。

  Citation   \cite{A}

  \bibliographystyle{amsplain}
  \begin{thebibliography}{10}
  \bibitem {A} https://math.stackexchange.com/questions/3369742/looking-for-references-to-pythagorean-triple-subsets
  \end{thebibliography}

表明

 Citation [1]

                                         References

 1. https://math.stackexchange.com/questions/3369742/looking-for-references-to-pythagorean-triple-subsets

有没有办法让这个 bibitem 在生成的 PDF 中可点击?

答案1

你真的不应该手工做参考书目。相反,你应该学会使用natbib/bibtexbiblatex/biber(见bibtex 与 biber 以及 biblatex 与 natbib 的比较以进行区分。)但如果您确实需要这样做,那么您可以使用宏\url(只接受一个参数)或\href以 url 和链接描述作为参数的宏。

\documentclass{article}
\usepackage{hyperref}
\begin{document}
\cite{A}
\cite{B}

\bibliographystyle{amsplain}
  \begin{thebibliography}{10}
  \bibitem {A} \url{https://math.stackexchange.com/questions/3369742/looking-for-references-to-pythagorean-triple-subsets}
  \bibitem {B} \href{https://math.stackexchange.com/questions/3369742/looking-for-references-to-pythagorean-triple-subsets}{A Stackexchange link}
  \end{thebibliography}
\end{document}

相关内容