테이블 참조에 물음표가 있습니까?

테이블 참조에 물음표가 있습니까?

이 코드가 있는데 컴파일할 때(여러 번이라도) 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}

따라서 요점은 여러 번 컴파일하면 다음과 같은 결과가 나온다는 것입니다.

실제로 샘플 내에서 Augmented Dickey-Fuller 테스트를 수행하면 p-값이 0.8226인 폭발 과정의 귀무 가설을 거부합니다. 이는 여기에 제시된 모든 모델인 AR(1), AR(3) 및 ARMA(1,1)에 적용됩니다. 모델 계수는 표 ??에서 확인할 수 있습니다.

저는 지금 Sharelatex를 사용하고 있습니다. 나는 어떤 제안이라도 감사하겠습니다

답변1

참조가 제대로 작동하려면(ShareLaTeX에서) 문서를 오류 없이 컴파일해야 합니다. 귀하의 예에서는 a로 시작했지만 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를 사용하여 이것을 생성합니다.

테이블예

관련 정보