我怎样才能制作这样的表格

我怎样才能制作这样的表格

在此处输入图片描述我想制作这个表格,但是当我尝试时它给了我一个错误,因为声明框中的文字出现在页面之外导致错误。

答案1

在此处输入图片描述

\documentclass{article}

\usepackage[margin=1in]{geometry}
\usepackage{tabularx}

\begin{document}

\noindent
\begin{tabularx}{\textwidth}{| X | X |}
  \hline
  \multicolumn{2}{| p{\dimexpr\textwidth-2\tabcolsep-2\arrayrulewidth} |}{\slshape\textbf{Declaration}: The project will be conducted in compliance with the University's Research
  Integrity Framework (P1415-956). This includes securing appropriate consent from
  participants, minimizing the potential for harm, and compliance with data-protection, safety
  \& other legal obligations. Any significant change in the purpose, design or conduct of the
  research will be reported to the SOM-REC Chair, and, if appropriate, a new request for
  ethical approval will be made to the SOM-REC.} \\
  \hline
  \textbf{Signature of PGT Student} & Date \\
  & \\
  \hline
  \textbf{Signature of Supervisor} & Date \\
  & \\
  \hline
  \textbf{Decision of Supervisor} & Approved or requires full ethical review \par (Delete as appropriate)  \\
  \hline
  \textbf{Decision of SOM-REC} & Date \\
  & \\
  \hline
  \textbf{Signature of SOM-REC Chair or SOM-REC Deputy Chair} & Date \\
  & \\
  \hline
  SOM-REC Reference Number (office use only) & \\
  \hline
\end{tabularx}

\end{document}

相关内容