排版会议记录的好方法?

排版会议记录的好方法?

有人能建议一种格式化商务会议记录的好方法吗?

[更新:]我特别想找到一种简单的方法,在右侧有一个“行动项目”栏,并且可能在最左侧有一个议程栏——就像印刷的会议记录书一样。

答案1

一个好方法是使用分钟 套餐。但对于一个简单的会议来说,这可能有点过头了。

答案2

我通过修改我找到的其他各种示例创建了以下内容。它在表格中提供三列(项目、注释和操作),每个表格单元格内都有换行符。

\documentclass[a4wide,10pt]{extarticle}
\usepackage[margin=0.5in]{geometry}
\usepackage{enumitem}
\setlist{noitemsep}
\usepackage{color}
\usepackage{array}
\usepackage{hyperref}
\usepackage[compact]{titlesec}
\titlespacing*{\section}{0pt}{6pt}{6pt}
\titlespacing*{\subsection}{0pt}{6pt}{6pt}

\begin{document}
\thispagestyle{empty}

\begin{center}
\textbf{Example Industries\\Monthly Meeting Minutes}
\vspace{0.33cm}
\end{center}

\begin{center}
\begin{tabular}{| m{2.8cm} | m{13.6cm} |} \hline
\textbf{Date and Time} & Saturday 02 June 2012 at 12:00 \\ \hline
\textbf{Venue} & Meeting Room \\ \hline
\textbf{Participants} & A. Nother, A. N. Other \\ \hline
\textbf{Apologies} & Y. A. N. Other \\ \hline
\end{tabular}
\end{center}

\subsection*{Minutes of the Meeting}
\begin{center}
\begin{tabular}{| m{1.8cm} | m{12.6cm} | m{2cm}|} \hline
\textbf{Item} & \textbf{Notes and Discussion} & \textbf{Action} \\ \hline
Matters Arising & The water-cooler is still broken. & \textbf{A.N.} \\ \hline
Progress on Projects & The large project is up and running and should be completed by the end the month. However, the smaller project has not yet started and has been placed on hold for now. The tiny project is complete and should start generating results this week. & \textbf{A.N.O.} \\ \hline
\end{tabular}
\end{center}

\subsection*{\color{red}{Next Meeting: Friday 08 June 2012 at 12:00.}}

\end{document}

以下是渲染文档的屏幕截图:

在此处输入图片描述

答案3

使用 Emacs 的组织模式相对定时器在描述列表上(C-c C-x -在 org 缓冲区中键入以开始并M-<RET>插入新项目)。完成后导出缓冲区转换为 LaTeX,或者直接转换为 PDF。

答案4

不管你使用哪种乳胶包,我都会使用emacs或者另一个高度可脚本化的编辑器,这样我就可以通过按键输入当前时间。有关如何执行此操作的示例,我们的姐妹网站是更好的来源。例如,请参阅这里

相关内容