我的表格位于我想要的标题上方

我的表格位于我想要的标题上方

我的代码是这样的,而表格位于“工作经验”部分上方。

\section{Work experience}

\begin{table}

\caption{Research Experience}

\centering

\begin{tabular}{|l|p{3cm}|l|p{3cm}|l|}

\hline

S. No. & Employer’s name & Post Held & Length of service (date) & Nature of work \\

\hline

 1 & Sardar Vallabhai National Institute of Technology & Research Associate & From--August 2013 To--Till Date & Research \\ 

 \hline

 2 & Sardar Vallabhai National Institute of Technology & --- & From--January 2012 To-July 2013 & Research \\

\hline

\end{tabular}

\end{table}

答案1

由于您没有使用\caption,因此您可以插入tabular 没有使用table环境。使用

\section{Working experience}

\begin{center}
  \begin{tabular}{..}
    ...
  \end{tabular}
\end{center}

\section如果使用的和之间有太多空格tabular,那么您可以插入一个否定的\vspace{<len>},或者使用\centering组内的声明:

\section{Working experience}

{\centering
  \begin{tabular}{..}
    ...
  \end{tabular}\par
}

相关内容