答案1
使用(内\hyperref[<internal link>]{<stuff>}
带星号):\ref
<stuff>
\section[Preuve du Théorème \ref*{theoreme5}]
{Preuve du \hyperref[theoreme5]{Théorème \ref*{theoreme5}}}
可选参数确保\hyperref
不会潜入 PDF 书签中,您也可以使用以下方法执行此操作\texorpdfstring
:
\section{Preuve du
\texorpdfstring
{\hyperref[theoreme5]{Théorème \ref*{theoreme5}}}% TeX string
{Théorème \ref*{theoreme5}}}% PDF string
答案2
我建议你使用聪明人包及其\cref
用户宏来实现排版目标。我进一步建议你使用阿姆斯特丹或者定理包及其类似定理的环境,而不是\paragraph{...}
生成类似定理的环境。
\documentclass[french]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{amsthm}
\usepackage[colorlinks]{hyperref}
\usepackage[capitalize,noabbrev]{cleveref}
\newtheorem{thm}{Théorème}
\begin{document}
\addtocounter{thm}{4} % just for this example
\begin{thm} \label{thm5}
\dots
\end{thm}
\dots
\stepcounter{section}
\section[Preuve du Théorème 5]{Preuve du \cref{thm5}}
\dots
\end{document}