0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

問題と解答をハイパーリンクで紐付ける方法

Last updated at Posted at 2022-12-29

コード

\documentclass[uplatex,dvipdfmx,12pt]{article}

\usepackage{hyperref}
\usepackage{hyperref}
\hypersetup{
  colorlinks,citecolor=blue,filecolor=blue,linkcolor=blue,urlcolor=blue
  }

\newcounter{mycount}

\newcommand{\qn}[1]{
  \subsubsection*{
  \label{sec:qn\thesection\alph{mycount}}
  \hyperref[sec:an\thesection\alph{mycount}]{\thesection\alph{mycount}\quad\textit{#1}}
  \stepcounter{mycount}}
  }

\newcommand{\an}{
  \subsubsection*{
  \label{sec:an\thesection\alph{mycount}}
  \hyperref[sec:qn\thesection\alph{mycount}]{\thesection\alph{mycount}}
  \stepcounter{mycount}}
  }



\begin{document}
\tableofcontents

\section{Test} \setcounter{mycount}{1}
  \qn{Test problem}
  Something.

  \qn{}
  Something.

  

\addcontentsline{toc}{subsection}{Answers and Hints}
\subsection*{Answers and Hints} \setcounter{mycount}{1}
  \an
  The answer of the first question.

  \an
  The answer of the second question.

\end{document}

出力例

qiita_probset-1.png

  • 「1a Test problem」を押すと答えの「1a」に、「1a」を押すと「1a Test problem」に飛ぶようになっています。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?