PNAS に表題と注釈が表示されない

PNAS に表題と注釈が表示されない

私は原稿を準備しようとしていますPNASテーブルで問題が発生しています。これ質問/回答では、表は の後に配置されます\end{article}。ただし、ドキュメントをコンパイルすると、表のタイトルも も表示されません\tablenote。私はパッケージに絞り込み、siunitsそれを使用して、それを削除すると (および のすべての使用\SI)、タイトルが戻ります。 を使い続けたいのですsiunitsが、これを回避する方法はありますか、それとも Word 文書 (わかりました、空の脅威) を開始する必要がありますか?

\documentclass{pnastwo}

\usepackage{booktabs}
\usepackage{multirow}
\usepackage{siunitx} % makes the table screwed up...
\usepackage[T1]{fontenc}
\usepackage{amsmath}

\begin{document}

\title{Paper title}

\author{Avi Ginsburg \affil{1}{Somewhere over the rainbow}}

\contributor{Submitted to Proceedings of the National Academy of Sciences
        of the United States of America}

\significancetext{Quite insignificant.}

\maketitle

\begin{article}
    \begin{abstract}
    {
        abstract (adjective) existing in thought or as an idea but not having a physical or concrete existence.
    }
    \end{abstract}

    \dropcap{H}ello world. Small is $\SI{1}{\angstrom}$ or so.

    \begin{acknowledgments}
        We are grateful to egreg for expressing sympathy for those who have to use the PNAS class.
    \end{acknowledgments}

    \end{article}

    \begin{table*}[ht]
        %   \centering
        \caption{Table title - We like to see them}
        \begin{tabular}{c c c }
            \toprule
            &
            \textbf{Something} & \textbf{Else} \\ 
            & & \\ 
            \midrule
            \multirow{6}{*}{\rotatebox[origin=c]{90}{Random}}
            &   accidental\tablenote{this is a table note} &  \\ 
            &   aimless & \\ 
            &   arbitrary & \\ 
            &   incidental & \\ 
            \cmidrule{2-3}
            &   indiscriminate & \\ 
            &   irregular & \\ 
            \midrule
            \multirow{5}{*}{\rotatebox[origin=c]{90}{Example}}
            & case & \\ 
            & illustration&\\ 
            & lesson &\\ 
            \cmidrule{2-3}
            & object & \\ 
            & part & \\ 
            \bottomrule
        \end{tabular}
        \label{tbl}
    \end{table*}

\end{document}

追加してみましたこれプリアンブルへの回答とクラス ファイルの変更。タイトル/キャプションが表示されるので、これは多少役立ちますが、スタイルが変更され、\tablenoteテーブルの下にはまだ表示されません。

関連情報