得到 table 的奇怪形式

Getting weird form of table

大家好,如果有人能帮助我。我是乳胶新手。我想在我的乳胶中添加 table 。我知道格式,但我不知道我做错了什么,因为我的 table 不是我想要的格式而且它在我添加标题时给我错误。

我需要图片中这样的东西

但是我在编译乳胶代码时得到了这个

这是我的代码:

\begin{center}
 \begin{tabular}[!ht]{||c c ||} 
        \caption{Dataset Specifications}
        \centering \label{data}
 \hline
 Dataset & Samples \ [0.5ex] 
 \hline\hline
 Vovid & 349 \ 
 \hline
 noncovid & 397  \ [1ex] 
 \hline


\end{tabular}
\end{center}

怎么样:

\begin{table}[!ht]
\centering
 \begin{tabular}{|c |c|} 
      
 \hline
 Dataset & Samples \ [0.5ex] 
 \hline
 Vovid & 349 \ 

 noncovid & 397  \ [1ex] 
 \hline
    
\end{tabular} 
\caption{Dataset Specifications}
  \label{tab:data}
\end{table}

所以,诀窍是 1) 在 table 环境中打包表格,2) 使用 \hline 和 |修改 table 单元格周围的线条。在 https://en.wikibooks.org/wiki/LaTeX/Tables

中润色 table 的更多方法

我的最小代码:

\documentclass{article}

\setlength{\tabcolsep}{1em}
\renewcommand{\arraystretch}{1.5}

\begin{document}

\begin{table}[htbp]
  \centering
  \begin{tabular}{|c|c|}
    \hline
    Dataset & Samples \
    \hline
    Covid & 349 \ 
    Non Covid & 397 \
    \hline
  \end{tabular}
  \caption{Dataset Specifications}
  \label{tab:data}
\end{table}

\end{document}

及其输出:

如果缺少任何功能或您不清楚的地方,请在下方评论 :)