セクションを参照したいのですが、セクションの名前は「My Section」で、ラベルは「sec:my-section」です。
デフォルトの使用例では、セクションを参照するために \ref または \nameref を使用します。\nameref を使用すると、Latex は「My Section」のようなセクション名を出力します。ただし、セクション「My Section」を参照するためには、HTML a タグのようなコマンドが必要ですが、別の名前、たとえば「First Topic」が必要です。
私の例を挙げます
\section{My Section}
\lable{sec:my-section}
Lorem impsum... \nameref{sec:my-section}{First Topic}
HTMLの場合
<a href="www.google.de">Google</a>
Latex にはリンクの名前を変更するパッケージまたは関数がありますか?
フォルカー
答え1
あなたが探しているのは\hyperref[sec:my-section]{First Topic}
完全なMWE:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\section{My Section}
\label{sec:my-section}
Lorem impsum... \hyperref[sec:my-section]{First Topic}
\end{document}