标题页中使用表格的奇怪缩进

标题页中使用表格的奇怪缩进

我需要为我的论文创建一个简单的问题描述页面。这也将是文档的标题页。我正在使用类memoir。我尝试使用tabular环境来对齐一些字段,但它会产生一些我无法删除的烦人的缩进。

以下是我的意思的说明

在此处输入图片描述

这是一个最小的工作示例

\documentclass[a4paper,11pt]{memoir}

\begin{document}

\begin{titlingpage}

\begin{tabular}{p{5cm}l}
Project title:          & Title \\
Student's name:         & Name\\
Problem description:    & \\
\end{tabular}

\vspace{4ex}
Lorem ipsum dolor sit amet...
\vspace{4ex}

\begin{tabular}{@{}p{5cm}l}
\noindent Assignment given:     & 01.01.2012 \\
\noindent Supervisor:           & Name\\
\noindent Co-Supervisor:        & Name  \\
\end{tabular}

\end{titlingpage}

\end{document}

答案1

还应在以下结构\noindent之前tabular

\documentclass[a4paper,11pt]{memoir}

\begin{document}

\begin{titlingpage}

\noindent% <----------------- added
\begin{tabular}{@{}p{5cm}l}% <--- modified column specification
Project title:          & Title \\
Student's name:         & Name\\
Problem description:    & \\
\end{tabular}

\vspace{4ex}
Lorem ipsum dolor sit amet...
\vspace{4ex}

\noindent% <----------------- added
\begin{tabular}{@{}p{5cm}l}
\noindent Assignment given:     & 01.01.2012 \\
\noindent Supervisor:           & Name\\
\noindent Co-Supervisor:        & Name  \\
\end{tabular}

\end{titlingpage}

\end{document}

Atabular开始一个段落,因此也会插入一个\parindent空格。\noindent正如预期的那样,删除它。使用\hspace*{-\parindent}would 也是如此。

相关内容