2017-06-27 17 views
0
私はミニページ環境で\脚注を使用する必要が

とミニページ環境でエラーが発生しますが、それは常にエラー脚注は、CTA-著者クラス

コマンド\数式モードでitshapeが無効になります。 \脚注{

MWEが

\documentclass{cta-author} 
\begin{document} 

\begin{table} 
\begin{minipage}{\columnwidth} 
    \begin{tabular}{|c|c|} 
     \hline 
     Column 1 & Column2 \\ 
     a\footnote{footnote example} & b\\ 
     \hline 
    \end{tabular} 
\end{minipage} 
\end{table} 
\end{document} 

ラテックスクラスファイルでは、あなたがcta-authorは脚注マークを作る方法を再定義することができますhere

答えて

1

です。代わりに$^{...}$の、\textsuperscript{...}を使用します。

enter image description here

\documentclass{cta-author} 

\makeatletter 
\def\@makefnmark{\textsuperscript{\@thefnmark}} 
\makeatother 

\begin{document} 

\begin{table} 
    \begin{minipage}{\columnwidth} 
    \begin{tabular}{|c|c|} 
     \hline 
     Column 1 & Column2 \\ 
     a\footnote{footnote example} & b \\ 
     \hline 
    \end{tabular} 
    \end{minipage} 
\end{table} 

% A possible work-around 
\begin{table} 
    \begin{tabular}{|c|c|} 
    \hline 
    Column 1 & Column2 \\ 
    a$^*$ & b \\ 
    \hline 
    \end{tabular} 

    \medskip 

    \footnoterule 

    {\itshape\footnotesize $^*$footnote example} 
\end{table} 

\end{document} 

そしてここでは、回避策の視覚的である:

enter image description here