如何配置双向超目标/超链接对?

如何配置双向超目标/超链接对?

这里是一些设置超链接/超目标对的乳胶,以便我可以快速浏览大型文档:

\documentclass{article}
\usepackage{hyperref}

\begin{document}

    \section{I am a section}
    I am some content with a hyperlink to some other  \hyperlink{new_link}{content}

    \section{another section}
    More content

    \section{Another section}
    Here is some content that I want to link to \hypertarget{new_link}{content}

\end{document}

此代码正确配置了一个超链接,从第 1 部分的内容转到内容 3。如何配置 Latex 使此链接成为双向链接,即当我单击“content进入”时,section 1我转到“content进入” section 3,当我单击“进入content”时section 3,我被带到“进入contentsection 1

以下是上述代码的输出:

在此处输入图片描述

答案1

\hyperlink现有的/对的第二个参数\hypertarget可以制成相应的\hypertarget/\hyperlink对。

\documentclass{article}
\usepackage[colorlinks]{hyperref}
\begin{document}
\section{A section}
Content with a hyperlink to some later \hyperlink{linkB}{\hypertarget{linkA}{content}}.

\clearpage
\section{Another section}
Content with a hyperlink to some earlier \hypertarget{linkB}{\hyperlink{linkA}{content}}.  
\end{document}

编译后,将您的 pdf 浏览器设置为一次查看整个页面,然后享受在两个超目标之间来回跳转的乐趣。

答案2

\documentclass{article}
\usepackage[colorlinks]{hyperref}
\begin{document}

\hypertarget{link1}{\textbf{Exercice 1}} (\hyperlink{link2}{\textbf{Solution}})
    
    Démontrer que l'on définit une distribution $T \in D'(R)$ en posant\\
    
\begin{enumerate}
\item $$\forall \varphi \in D(R) :\left\langle T,\varphi \right\rangle = \lim_{n \rightarrow \infty} \left\{\sum_{j=0}^{n} \left(\frac{1}{j}\right) - n \varphi(0) - \varphi'(0) logn \right\}$$
        
\item $$\forall \varphi \in D(R) :\left\langle pf\frac{1}{x^2},\varphi \right\rangle = \lim_{\epsilon \rightarrow  0}\left\{ \int_{\left| x \right| \geq \epsilon} \frac{\varphi(x)}{x^2} dx - 2\frac{\varphi(0)}{\epsilon} \right\}$$
        
\item $$\forall \varphi \in D(R) :\left\langle pf\frac{H}{x^2},\varphi \right\rangle = \lim_{\epsilon \rightarrow  0}\left\{ \int_{\left| x \right| \geq \epsilon} \frac{\varphi(x)}{x^2} dx - \frac{\varphi(0)}{\epsilon} + \varphi '(0) \log \epsilon \right\}$$
        
\end{enumerate}
    
\hypertarget{link3}{\textbf{Exercice 2}} (\hyperlink{link4}{\textbf{Solution}})
    
    Pour $\varphi \in D(R)$ on pose\\
    $$\left\langle x_+^{-1},\varphi \right\rangle = \lim_{\epsilon \rightarrow  0_+}\left\{ \int_{\epsilon}^\infty \frac{\varphi(x)}{x} dx + \varphi(0)\log \epsilon \right\}$$.\\
    Prouver que cette limite existeest définit une distribution sur $R$.
    
\hypertarget{link5}{\textbf{Exercice 3}} (\hyperlink{link6}{\textbf{Solution}})
    
    Montrer que la fonction définie p.p. sur $R$.\\
    $$f(x)=\chi_{]0,\frac{\pi}{2}[} (x) \left(\frac{1}{sinx}-\frac{1}{x}\right) \in L^1(R)$$
    
\newpage
    
\hypertarget{link2}{\textbf{Solution}} (\hyperlink{link1}{\textbf{Exercice 1}})
    
    The solution is here.....
    
\newpage
\hypertarget{link4}{\textbf{Solution}} (\hyperlink{link3}{\textbf{Exercice 2}})
    
    The solution is here.....
    
\newpage
\hypertarget{link6}{\textbf{Solution}} (\hyperlink{link5}{\textbf{Exercice 3}})
    
    The solution is here.....
\end{document}

相关内容