如何将一个单词链接到第二个单词,然后将第二个单词链接到第三个单词

如何将一个单词链接到第二个单词,然后将第二个单词链接到第三个单词

在此处输入图片描述

在这里,我想将单词“Round 1 Problem 1”、“Round 1 Problem 2”链接到第二页的单词“A 1”、“A 2”(下图)。这样,每当我点击第 1 轮问题 1我需要答 1在此处输入图片描述现在,我想将第二页中的单词“A 1”链接到第三页中的单词“A 1”(如下图所示),这样每当我点击答 1在第二页,它带我到A 1 的解决方案

在此处输入图片描述

我正在为此使用hyperlinkhypertarget这是我正在使用的代码。

  colframe=black,colback=Chartreuse1,
  boxrule=0.5pt,arc=4pt,boxsep=0pt,left=6pt,right=6pt,top=6pt,bottom=6pt}

\begin{center}
\section*{\huge{\underline{Round 1 Problems}}}
    \mybox{\hyperlink{R1P1}{Round 1 P1}} \\ \vspace{4mm}
    \mybox{Round 1 P2}\\ \vspace{4mm}
    \mybox{Round 1 P3} \\ \vspace{4mm}
    \mybox{Round 1 P4} \\ \vspace{4mm}
    \mybox{Round 1 P5}} \\ \vspace{4mm}
    \mybox{Round 1 P6} \\  \vspace{4mm}
\section*{\huge{\underline{Round 2 Problems}}}
    \mybox{Round 2 P1} \\ \vspace{4mm}
    \mybox{Round 2 P2} \\ \vspace{4mm}
    \mybox{Round 2 P3} \\ \vspace{4mm}
    \mybox{Round 2 P4} \\ \vspace{4mm}
    \mybox{Round 2 P5} \\ \vspace{4mm}
    \mybox{Round 2 P6} \\ \vspace{4mm}
\end{center} 


\mybox{{Problem 1 : }}
Prove the inequality which states that if you let $x_{1}, x_{2}, \ldots, x_{n}$ be positive real numbers, with $n \geq 2,$ then you have the inequality
$$
\frac{x_{1}}{x_{2}+x_{3}+\cdots+x_{n}}+\frac{x_{2}}{x_{1}+x_{3}+x_{4}+\cdots+x_{n}}+\cdots+\frac{x_{n}}{x_{1}+x_{2}+\cdots+x_{n-1}} \geq \frac{n}{n-1}
$ 

答案1

如果需要,您可以将 嵌套\hypertarget在 中\hyperlink。但即使以下操作也没有问题:

在此处输入图片描述

\documentclass{article}

\usepackage{hyperref}

\begin{document}

Jump to \hyperlink{Problem-1}{Problem~1}.

\bigskip

\hypertarget{Problem-1}{}\hyperlink{Solution-1}{\textbf{Problem~1}}.

\bigskip

\hypertarget{Solution-1}{\textbf{Solution~1}}.

\end{document}

点击第一个问题 1 会跳转到问题 1. 点击问题 1跳转到解决方案 1。关键是使用独特的目标名称。

相关内容