我想在表格框中留出更多空白以供教授笔记。
\begin{table}[ht]
\begin{center}
\begin{tabular}{|p{6cm}|p{4cm}|}
\hline
$\bullet$ Date du TP : \textit{20/10/2019} \\ $\bullet$ Date de remise : \textit{9/11/2019} \\ $\bullet$ Remarque : \textit{partie Matlab non faite car la conversion du fichier de Matlab 2018a vers le 2014a n'a pas fonctionnée} & Evaluation Finale : \\\hline
\multicolumn{2}{|l|}{ Notes : \smallbreak $\bullet$ }\\
\hline
\end{tabular}
\end{center}
\end{table}
答案1
为了增加单个表的行高,您可以使用 ros\\[<length of your choice here>]
而不是常规的\\
来结束这一特定的行。
在以下示例中,我还对您的表格做了一些其他更改。首先,我将环境替换center
为\centering
命令,因为前者添加了一些可能不需要的额外空白。我还替换了前两个\\
\newline
。这样,您会在表格的右侧得到一条连续的垂直线。如果您想将“Evaluation Finale”与“Remarque”保留在同一行,您可以使用第二个表格中提供的解决方案,其中我将前两次出现的替换为\\
,& \\
同样是为了使垂直线连续。
当然,您也可以使用任何其他适合您需要的长度,而不是以下示例中的3cm
和。5cm
\documentclass{article}
\begin{document}
\begin{table}[ht]
\centering
\begin{tabular}{|p{6cm}|p{4cm}|}
\hline
$\bullet$ Date du TP : \textit{20/10/2019} \newline
$\bullet$ Date de remise : \textit{9/11/2019} \newline
$\bullet$ Remarque : \textit{partie Matlab non faite car la conversion du fichier de Matlab 2018a vers le 2014a n'a pas fonctionnée}
& Evaluation Finale : \\\hline
\multicolumn{2}{|l|}{ Notes : \smallbreak $\bullet$ }\\[3cm]
\hline
\end{tabular}
\end{table}
\begin{table}[ht]
\centering
\begin{tabular}{|p{6cm}|p{4cm}|}
\hline
$\bullet$ Date du TP : \textit{20/10/2019} & \\
$\bullet$ Date de remise : \textit{9/11/2019} & \\
$\bullet$ Remarque : \textit{partie Matlab non faite car la conversion du fichier de Matlab 2018a vers le 2014a n'a pas fonctionnée}
& Evaluation Finale : \\\hline
\multicolumn{2}{|l|}{ Notes : \smallbreak $\bullet$ }\\[5cm]
\hline
\end{tabular}
\end{table}
\end{document}