%20%E3%81%A7%E5%AF%BE%E5%BF%9C%E3%81%99%E3%82%8B%E8%91%97%E8%80%85%E3%81%AE%E6%95%B0%E5%AD%97%E3%82%92%E8%A8%98%E5%8F%B7%E3%81%AB%E5%A4%89%E6%9B%B4%E3%81%99%E3%82%8B.png)
私はAPLジャーナルに原稿を投稿しています。
編集チームは、脚注として、連絡先著者宛てにアスタリスクを付けてメールを書くよう要求しました。
デフォルトでは、revtex ファイルは AIP 形式です。これは、アスタリスクの代わりに数字を使用します。数字を使用する AIP 形式が間違っているのか、それとも編集チームが最近考えを変えただけなのかはわかりません。
数字をアスタリスクに変更し、2 人の著者をアスタリスクで、もう 1 人の著者をダガーで囲むにはどうすればよいですか?
サポートしてくれてありがとう。
答え1
revtex
前書きの脚注には別の定義を使用します。これは次のように適応できます。
\documentclass[aip]{revtex4-2}
\usepackage{footmisc}
\begin{document}
{
\makeatletter
\def\frontmatter@thefootnote{%
\altaffilletter@sw{\@fnsymbol}{\@fnsymbol}{\csname c@\@mpfn\endcsname}%
}%
\makeatother
\author{A. B. Name}
\email{[email protected]}
\affiliation{University}
\author{C. D. Test}
\email{[email protected]}
\affiliation{School}
\maketitle
}
normal text with footnote\footnote{text}
\end{document}
答え2
脚注記号は簡単に変更できます。これらはコマンドで呼び出されます\thefootnote
。また、脚注番号を記号に変換する別のマクロもあります\fnsymbol
。1はアスタリスク、2はダガー、3はダブルダガーなどです。
だからあなたはできる
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
元に戻したい場合(記事本文)
\renewcommand*{\thefootnote}{\arabic{footnote}}
\documentclass{article}
\usepackage[width=16cm, bottom=18cm]{geometry}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\begin{document}
\title{About footnotes}
\author{Author 1\footnote{institution 1}
\and Author 2\footnote{institution 2}}
\maketitle
\setcounter{footnote}{0} % not sure it is required
\renewcommand*{\thefootnote}{\arabic{footnote}}
The text with normal\footnote{ie numeric} footnotes\footnote{blah blah}.
\end{document}