付録の前にある表

付録の前にある表

私の表は、ページ上部の付録タイトルの前に表示されます。[H]、[H!]、[hbt!] などのさまざまなコマンドを使用してみましたが、表は移動しません。おそらくパッケージとの競合があるのでしょうか?

私の文書の下部は次のようになります。

\printcredits
\bibliographystyle{unsrtnat}
% Loading bibliography database
\bibliography{mybibliography}

\newpage
\appendix
\section{Appendix}



\begin{table*}[h]
\caption{Average peer effect - Pre-COVID sample.}
\begin{center}
\begin{footnotesize}
\begin{tabular}{l D{)}{)}{10)3} D{)}{)}{10)3} D{)}{)}{11)3} D{)}{)}{11)3}}
\hline
 & \multicolumn{1}{c}{Model 1} & \multicolumn{1}{c}{Model 2} & \multicolumn{1}{c}{Model 3} & \multicolumn{1}{c}{Model 4} \\
\hline

\hline
\end{tabular}
 \begin{tablenotes}
      \begin{footnotesize}
       \item \textit{Notes:} The table reports results of a logistic regression, explaining the probability for a dwelling to adopt a retrofit measure. 0-50 meters is a dummy variable for location between 0 and 50 meters from the nearest block leader; other distance variables are defined correspondingly (The reference category is a distance larger than 500 meters). Standard errors (clustered at community level) are in parentheses. *,**,*** indicate statistical significance at the 10\%, 5\% and 1\% level respectively.   
      \end{footnotesize}
       
    \end{tablenotes}
\end{footnotesize}
\end{center}
\end{table*}

\end{document}

私が使用するパッケージ:

\documentclass[a4paper,fleqn]{cas-dc}

% If the frontmatter runs over more than one page
% use the longmktitle option.

%\documentclass[a4paper,fleqn,longmktitle]{cas-sc}

%\usepackage[numbers]{natbib}
%\usepackage[authoryear]{natbib}
\usepackage[numbers]{natbib}
%\usepackage[hypcap=true]{hyperref}
\usepackage{threeparttable}
\usepackage{tabularx}
\usepackage{float}
\usepackage{placeins}
\usepackage{appendix}
\usepackage[final]{changes}

答え1

私は cas-dc クラスに詳しくなく、ダウンロードするのも面倒なので、代わりに article を使用しました。また、tabular 自体も諦めました。

これにより、両方\sectionと表形式が内部に配置され\twocolumn[...]、両方が完全な幅になり、正しい順序になります。

\documentclass[a4paper,fleqn,twocolumn]{article}
\usepackage{threeparttable}
\usepackage{appendix}
\usepackage{caption}
\usepackage{lipsum}% random text

\begin{document}
\tableofcontents

\listoftables

\appendix
\twocolumn[\section{Appendix}
  \captionof{table}{Average peer effect - Pre-COVID sample.}
  \begin{tablenotes}
    \footnotesize
    \item \textit{Notes:} The table reports results of a logistic regression, explaining the probability for a dwelling to adopt a retrofit measure. 0-50 meters is a dummy variable for location between 0 and 50 meters from the nearest block leader; other distance variables are defined correspondingly (The reference category is a distance larger than 500 meters). Standard errors (clustered at community level) are in parentheses. *,**,*** indicate statistical significance at the 10\%, 5\% and 1\% level respectively.   
  \end{tablenotes}
  \vspace{\textfloatsep}]

\lipsum[1-6]

\end{document}

関連情報