%EC%9D%98%20%ED%95%B4%EB%8B%B9%20%EC%9E%90%EB%8F%99%20%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8%EC%97%90%EC%84%9C%20%EC%88%AB%EC%9E%90%EB%A5%BC%20%EA%B8%B0%ED%98%B8%EB%A1%9C%20%EB%B3%80%EA%B2%BD%ED%95%A9%EB%8B%88%EB%8B%A4..png)
APL 저널에 원고를 제출하고 있습니다.
편집팀에서는 교신저자를 위한 메일과 함께 별표를 각주로 기재해야 합니다.
기본적으로 revtex 파일은 AIP 형식입니다. 별표 대신 숫자를 사용합니다. AIP 형식이 숫자를 사용하기 때문에 잘못된 것인지 아니면 편집팀이 최근에 마음을 바꿨는지 모르겠습니다.
숫자를 별표로 변경하고 별표가 있는 두 명의 교신저자와 단검이 있는 두 번째 교신저자를 포함하려면 어떻게 해야 합니까?
지원해 주셔서 감사합니다.
답변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}