acmart: 티저 그림의 각주

acmart: 티저 그림의 각주

내 에 일부 URL 각주를 추가하려고 합니다 teaserfigure. 나는 주어진 해결책을 시도하고 있습니다이 답변하지만 이상한 결과가 나타납니다.

각주 각주

MWE:

\documentclass[10pt,sigconf]{acmart}
\begin{document}
\title{Here's a title}
\begin{teaserfigure}
    \centering
    \includegraphics[width=.3\textwidth]{example-image-a} \quad
    \includegraphics[width=.3\textwidth]{example-image-b}
    \caption{Image A from\protect\footnotemark\ and image B from\protect\footnotemark.}
\end{teaserfigure}

\maketitle

\footnotetext{Source for image A}
\footnotetext{Source for image B}

\section{Introduction}
    Here's some text\footnote{And a footnote!}

\end{document}

답변1

솔루션 1

각주에 기호 포함

\documentclass[10pt,sigconf]{acmart}

\begin{document}
\title{Here's a title}
\begin{teaserfigure}
    \centering
    \includegraphics[width=.3\textwidth]{example-image-a} \quad
    \includegraphics[width=.3\textwidth]{example-image-b}
    \caption{Image A from\protect\footnotemark\ and image B from\protect\footnotemark.}
\end{teaserfigure}

\maketitle

{
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\footnotetext[1]{Source for image A}
\footnotetext[2]{Source for image B}
}
\section{Introduction}
    Here's some text\footnote{And a footnote!}

\end{document}

여기에 이미지 설명을 입력하세요

해결 방법 2:

어디서나 숫자

\documentclass[10pt,sigconf]{acmart}

\begin{document}
\title{Here's a title}
\begin{teaserfigure}
        \renewcommand{\thefootnote}{\arabic{footnote}}
    \centering
    \includegraphics[width=.3\textwidth]{example-image-a} \quad
    \includegraphics[width=.3\textwidth]{example-image-b}
    \caption{Image A from\protect\footnotemark\ and image B from\protect\footnotemark.}
\end{teaserfigure}

\maketitle

\footnotetext[1]{Source for image A}
\footnotetext[2]{Source for image B}
\addtocounter{footnote}{2}

\section{Introduction}
    Here's some text\footnote{And a footnote!}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보