如何创建每行和每列具有固定宽度、高度和列宽的表格?

如何创建每行和每列具有固定宽度、高度和列宽的表格?

我想要实现的目标

我迄今已取得很大进步

\documentclass{report}
\usepackage{tabularx}

\begin{document}
\begin{center}
\vspace*{-2cm}
    \Large
    SCOPE DOCUMENT REVISION HISTORY
    \vspace{0.5cm}
    
    % \begin{document}
    \begin{tabularx}
    {\textwidth}
    % {|c|c|c}
    {|p{1cm}@{\rule[-3ex]{0pt}{11ex}}|*{7}{C|}}
    % |@{}p{4cm}
    % \hline\xrowht[()]{0pt}
    \hline
    % \vspace{-1cm}
    % \rule{-10pt}{No.}
    % [-5ex]
    % \begin{center}
    % \renewcommand{\arraystretch}{0.5}
    % \rule{0pt}{1cm} {No.} 
    No. & Comments & Action \\
    % \multicolumn{1}{|p{2cm}|}{\makeheight{1cm}No.} & Comments& Action 
    % \end{center}
    
    \hline
    % \vspace{1.75cm}
    % \begin{center}
      &  &   \\
    % \end{center}
    \hline
    % \vspace{1.75cm}
     &  &  \\
    \hline
    % \vspace{1.75cm}
     &  &  \\
    \hline
    % \vspace{1.75cm}
     &  &  \\
    \hline
    % \vspace{1.75cm}
     &  &  \\
    \hline
    % \vspace{1.75cm}
     &  &    \\
    \hline
    % \vspace{2cm}
    \end{tabularx}
    % \end{document}
\end{center}
% \begin{align}
\vspace{0.3cm}
\Large
\hspace{0.56cm}Supervisor signature:\\*
% \vspace{1cm
\vskip 0.2in
\end{document}

有人能告诉我如何将其变成我附上图片的表格吗?你会帮到我一个大忙,提前谢谢了。

答案1

以下结果可能更接近预期。可以通过更改 [] 内的值来调整行高:

在此处输入图片描述

\documentclass{article}
\usepackage{tabularx}
\newcolumntype{C}{>{\centering\arraybackslash}X}

\begin{document}

\begin{center}
  \vspace*{-2cm}
  \Large
  SCOPE DOCUMENT REVISION HISTORY
  \vspace{0.5cm}
    
  \begin{tabularx}{\textwidth}{|p{1cm}|*{2}{C|}}
    \hline
    No. & Comments & Action \\
    \hline
      &  &   \\[11ex]
    \hline
     &  &  \\[11ex]
    \hline
     &  &  \\[11ex]
    \hline
     &  &  \\[11ex]
    \hline
     &  &  \\[11ex]
    \hline
     &  &    \\[11ex]
    \hline
  \end{tabularx}
\end{center}
\vspace{0.3cm}
\Large
\noindent Supervisor signature:

\end{document}

相关内容