引用具有新連結名稱的標籤

引用具有新連結名稱的標籤

我想參考一個部分。名為“我的部分”的部分並具有標籤“sec:my-section”

在預設用例中,我使用 \ref 或 \nameref 來引用該部分。使用 \nameref Latex 列印出部分名稱,例如「我的部分」。但現在我需要一個像 HTML a Tag 這樣的命令來引用「我的部分」部分,但作為其他名稱,例如「第一個主題」。

這是我的例子

\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}

相關內容