表への参照に疑問符が付いていますか?

表への参照に疑問符が付いていますか?

このコードがあり、コンパイルすると(複数回でも)、PDF の参照があるはずの場所に疑問符が表示されます。

Actually if we perform an Augmented Dickey-Fuller test on the in-sample we refuse the null hypothesis of explosive process with a p-value of 0.8226. 
This applies to all the models here presented, AR(1), AR(3) and 
ARMA(1,1). Model coefficients can be inspected in Table 
\ref{tab:daily_model_coefficients}
\medskip

\begin{figure}[H]
    \centering
    \caption{Model coefficients of the Daily Component Models\label{tab:daily_model_coefficients}}
    \begin{tabular}{c|c|c|c|c|c}
    \hline \hline
    $Model$ & \phi_{0} & \phi_{1} & \phi_{2} & \phi_{3} & \theta_{1}\\   
    \hline
    AR(1)   & 6.5397    & 0.8988 &- &- & - \\
    AR(3) & 6.2932  & 0.7257    & -0.0099   & 0.2162 &- \\
    ARMA(1,1) & 6.0340  & 0.9741    & -&    -   & -0.4991 \\
\hline
\end{tabular}
\end{table}

つまり、複数回コンパイルすると次の結果が得られます。

実際に、サンプル内で拡張ディッキー・フラー検定を実行すると、爆発過程の帰無仮説は p 値 0.8226 で棄却されます。これは、ここで提示したすべてのモデル、AR(1)、AR(3)、ARMA(1,1) に適用されます。モデル係数は表 ?? で確認できます。

私は現在Sharelatexを使用しています。何かアドバイスがあればお願いします

答え1

参照が (ShareLaTeX 上で) 適切に機能するためには、ドキュメントがエラーなしでコンパイルされるようにする必要があります。例では、 で始まって でfigure終わっていることに気付くでしょうtable

\begin{figure}[H]
  % ...
\end{table}

また、tabular数式モードを適切に挿入しなくても、ヘッダー行に数式コンテンツが含まれます。

必要なものは次のとおりです:

ここに画像の説明を入力してください

\documentclass{article}

\begin{document}

Actually if we perform an Augmented Dickey-Fuller test on the in-sample we
refuse the null hypothesis of explosive process with a p-value of 0.8226. 
This applies to all the models here presented, AR(1), AR(3) and 
ARMA(1,1). Model coefficients can be inspected in Table 
\ref{tab:daily_model_coefficients}.

\begin{table}
  \centering
  \caption{Model coefficients of the Daily Component Models\label{tab:daily_model_coefficients}}
  \begin{tabular}{c|c|c|c|c|c}
    \hline \hline
    Model & $\phi_0$ & $\phi_1$ & $\phi_2$ & $\phi_3$ & $\theta_1$ \\   
    \hline
    AR(1)   & 6.5397    & 0.8988 &- &- & - \\
    AR(3) & 6.2932  & 0.7257    & -0.0099   & 0.2162 &- \\
    ARMA(1,1) & 6.0340  & 0.9741    & -&    -   & -0.4991 \\
    \hline
  \end{tabular}
\end{table}

\end{document}

使用を検討するbooktabsあなたの表現に対してtabular

答え2

微妙な違いかもしれませんが、ラベルをキャプションの後に配置するのが推奨される方法であるという印象を受けます。

\documentclass{article}

\begin{document}

Actually if we perform an Augmented Dickey-Fuller test on the in-sample we refuse the null hypothesis of explosive process with a p-value of 0.8226. 
This applies to all the models here presented, AR(1), AR(3) and 
ARMA(1,1). Model coefficients can be inspected in Table 
\ref{tab:daily_model_coefficients}
\medskip
\begin{table}[htbp]
    \centering
    \begin{tabular}{c|c|c|c|c|c}
        \hline \hline
        $Model$ & $\phi_{0}$ & $\phi_{1}$ & $\phi_{2}$ & $\phi_{3}$ & $\theta_{1}$ \\   
        \hline
        AR(1)   & 6.5397    & 0.8988 &- &- & - \\
        AR(3) & 6.2932  & 0.7257    & -0.0099   & 0.2162 &- \\
        ARMA(1,1) & 6.0340  & 0.9741    & -&    -   & -0.4991 \\
        \hline
    \end{tabular}
    \caption{Model coefficients of the Daily Component Models}
    \label{tab:daily_model_coefficients}
\end{table}

\end{document}

ShareLaTeX を使用すると次のものが生成されます:

表の例

関連情報