使用几何包删除左侧填充

使用几何包删除左侧填充

我正在尝试制作滑翔机飞行的清单,但无法告诉乳胶从页面上删除所有边距。

我的代码如下所示:

\documentclass{minimal}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[a6paper, margin={0cm,0cm},twocolumn, layouthoffset=0pt]{geometry}

\usepackage{tabularx}
\usepackage[table]{xcolor}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}

\begin{document}
\rowcolors{2}{gray!25}{white}
\renewcommand{\arraystretch}{1.2}

\begin{tabularx}{\columnwidth}{X}
 \rowcolor{gray!50}
 \textbf{ Pre-Flight } \\
 Remove tail wheel (if removable) \\
 Cap \& Sunglasses \\
 Chute on - straps tight \\
 Check Ballast \\
 Px Briefing / Secure back straps \\
 Secure free objects \\
 Check Instruments \\
 Radio on \\
 Controls (Visual) \\
 Wind \\
 Eventualities (Launch failure) \\
\end{tabularx}
\end{document}

然而,它看起来是这样的:

在此处输入图片描述

如何去除左侧的空白?

答案1

解决了。​​空格是段落开头的自动缩进。我用\setlength{\parindent}{0cm}

相关内容