1
0

More than 1 year has passed since last update.

【LaTeX】\footnoteも\refしたい

Last updated at Posted at 2022-09-05

LaTeX の脚注を\footnoteで出した後もう一回同じ脚注を参照したいなとなったときは

  • はじめに\footnote{脚注の内容\label{ラベル名}}として
  • 再び参照するときは\footref{ラベル名}とする

だけです。特別なパッケージとかはいらないようです。気付かないで3時間くらい無駄にしました。 hyperrefも対応しているみたいです。

platex文書
\documentclass[dvipdfmx]{jsarticle}
\pagestyle{empty}
\usepackage{geometry}
\usepackage{hyperref}
\geometry{papersize={15cm,3cm}}
\begin{document}
吾輩\footnote{日本語の一人称の一つ。\label{fot:吾輩}}は猫である。吾輩\footref{fot:吾輩}は犬ではない。
\end{document}

出力(用紙サイズを横長にしました)
footref.jpg

1
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
1
0