¿Signos de interrogación en una referencia a una tabla?

¿Signos de interrogación en una referencia a una tabla?

Tengo este código y cuando compilo (incluso varias veces) aparecen unos signos de interrogación en el pdf en el lugar donde debería estar la referencia.

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}

Entonces el punto es que cuando compilo varias veces obtengo lo siguiente:

En realidad, si realizamos una prueba de Dickey-Fuller aumentada en la muestra, rechazamos la hipótesis nula del proceso explosivo con un valor p de 0,8226. Esto se aplica a todos los modelos aquí presentados, AR(1), AR(3) y ARMA(1,1). Los coeficientes del modelo se pueden inspeccionar en la Tabla ??

Estoy usando Sharelatex ahora. Agradeceré cualquier sugerencia

Respuesta1

Para que sus referencias funcionen correctamente (en ShareLaTeX), debe compilar el documento sin errores. Notarás que en tu ejemplo comenzaste con a figurepero terminaste con a table:

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

Además, tabularla fila del encabezado contiene contenido matemático sin que usted inserte el modo matemático correctamente.

Esto es lo que necesitas:

ingrese la descripción de la imagen aquí

\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}

Considere usarbooktabspara sus tabularrepresentaciones.

Respuesta2

Quizás sea un matiz, pero tengo la impresión de que la práctica recomendada es colocar la etiqueta después del título:

\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}

Lo que produce esto usando ShareLaTeX:

tablaEjemplo

información relacionada