与主管的会议记录

与主管的会议记录

我想制作一张表格会议记录与主管一起。格式如下;

-------------------------------------------------------------------------------------
Meeting#-------------Roll#-----------Meeting Date---------Minutes
-------------------------------------------------------------------------------------
Summary of Discussion:
-------------------------------------------------------------------------------------

下面的代码仅适用于会议标题,但我不知道如何包含讨论摘要本表中的段落....

\documentclass{book}

\begin{document}

\begin{center}
\begin{tabular}{ |p{3cm}||p{2cm}||p{3cm}||p{6cm}|  }
\hline
\hline
\multicolumn{4}{|c|}{\textbf{Meeting Minutes}} \\
\hline
\hline
\textbf{Meeting no}& \textbf{Roll no}&\textbf{Meeting Date}&\textbf{Duration}\\
\hline
{1}& {112}&{17-04-2014}&{30 Minutes}\\
\hline
\end{tabular}
\end{center}
\end{document}

答案1

这是我从答案。请注意,你最好选择分钟正如@strpeter所建议的包。

\documentclass{article}
\usepackage{lipsum}
\usepackage{calc}
\begin{document}

\begin{center}
    \begin{tabular}{ |p{3cm}||p{2cm}||p{3cm}||p{6cm}|  }
        \hline
        \hline
            \multicolumn{4}{|c|}{\textbf{Meeting Minutes}} \\
        \hline
        \hline
            \textbf{Meeting no}& \textbf{Roll no}&\textbf{Meeting Date}&\textbf{Duration}\\
        \hline
            {1}& {112}&{17-04-2014}&{30 Minutes}\\
        \hline
            \multicolumn{4}{|l|}{\textbf{Summary of Discussion:}} \\ 
            \multicolumn{4}{|p{15cm+2\tabcolsep}|}{\lipsum[1]} \\ 
        \hline
    \end{tabular}
\end{center}
\end{document}

我改为documentclass因为article书本大小的会议记录不会那么长;)

在此处输入图片描述

相关内容