引用文献の参照エントリへのリンク

引用文献の参照エントリへのリンク

APA スタイルの「引用 (著者、年)」で引用を追加し、それらを参考文献セクションの記事エントリにリンクさせたいと思います。 まさにこの方法です:出典:http://aclanthology.org/2023.acl-long.5.pdf(単なる例)。これを Latex で自動的に行う方法はありますか? 「引用 [1]」のような索引引用を使用してこれを行う方法に関するチュートリアルしか見つかりませんでした。

私が望んでいることを説明すると、次のようになります。
ここに画像の説明を入力してください

このリンクをクリックすると、次の場所に移動します:

ここに画像の説明を入力してください

現在のコードは次のとおりです:

    % !TEX TS-program = xelatex
% !TEX encoding = UTF-8

% This is a simple template for a XeLaTeX document using the "article" class,
% with the fontspec package to easily select fonts.

\documentclass[11pt]{article} % use larger type; default would be 10pt

\usepackage{fontspec} % Font selection for XeLaTeX; see fontspec.pdf for documentation
\defaultfontfeatures{Mapping=tex-text} % to support TeX conventions like ``---''
\usepackage{xunicode} % Unicode support for LaTeX character names (accents, European chars, etc)
\usepackage{xltxtra} % Extra customizations for XeLaTeX

%\setsansfont{Deja Vu Sans}
%\setmonofont{Deja Vu Mono}

% other LaTeX packages.....
\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
\geometry{a4paper} % or letterpaper (US) or a5paper or....
%\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent
\usepackage{hyperref}
\usepackage{graphicx} % support the \includegraphics command and options

\title{My title}
\author{Me}
\date{} % Activate to display a given date or no date (if empty),
         % otherwise the current date is printed 

\begin{document}
\maketitle

Just \hyperlink{label1}{Click me!}. In the paper \cite{Test00}...
\pagebreak
\hypertarget{label1}{I'm target}
\pagebreak
\begin{thebibliography}{99}
\bibitem{Test00} T. Test, \emph{Test testing tests}, Journal of Testing
\end{thebibliography}

\end{document}

%\section{}

%\subsection{}



\end{document}

関連情報