\begin{table} 使表格消失。(pdflatex)

\begin{table} 使表格消失。(pdflatex)

我目前正在使用 pdflatex。有几次,我的一些作品在编译为 pdf 时根本无法显示。例如,以下代码有效:

\begin{center}
    {\footnotesize
    \begin{tabular}{ |c|c| } 
     \hline
     {H} & {V}  \\ 
     \hline \hline
     F & 0.3, 0.5, 0.7 \\ 
     N & 5, 10, 15, 20 \\
     O & 10, 20, 30, 40, 50 \\
     T r & 0.7, 0.8, 0.9, 0.99 \\
     \hline
    \end{tabular}
    }
\end{center}

但这不起作用:

\begin{table}[h!]
    \begin{tabular}{|l|l|l|l|}\hline & & &  \\
        Test users  &  Operating system & Browser & Screen resolution\\ 
& & &  \\ \hline
        Test user 1 & Win 7 pro & Mozilla firefox & 1680X1050\\ \hline
        Test user 1 & Win 7 pro & Mozilla firefox & 1680X1050\\ \hline
        Test user 1 & Win 7 pro & Mozilla firefox & 1680X1050\\ \hline
    \end{tabular}
    \caption{Test environment details}
    \label{Test-environment-details}
\end{table}

我如何找出问题所在?如果有警告,至少我可以处理它。请帮忙。(顺便说一下,我是乳胶新手)

相关内容