无法消除缩进(即使使用 \noindent)

无法消除缩进(即使使用 \noindent)

我想\begin{tabular}{l} \textsc{code}\\ 11-22-33-44 \end{tabular}%删除前面的缩进:

在此处输入图片描述

如果这是一个非常简单的问题,我必须承认我目前没有看到它。

平均能量损失

\documentclass[
fontsize=12pt,
a4paper,
DIV=15,
parskip=half
]{scrartcl}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{
lmodern
}

\listfiles

\begin{document}
%\vspace{0.5cm}
\begin{flushleft}
Words\\
More Words
\end{flushleft}%
%\noindent%
%\begin{flushleft}
%\begin{minipage}[t]{\textwidth} %
%\begin{flushleft}
\noindent\begin{tabular}{l}
\textsc{code}\\
11-22-33-44
\end{tabular}%
%\end{flushleft}
%\end{minipage} %
\hfill
%\begin{minipage}[t]{6cm}
%\begin{flushright}%
\begin{tabular}{ll}
\textsc{place,} & \textsc{date}\\
Place, & \today
\end{tabular} %
%\end{flushright}
%\end{minipage}
%\end{flushleft}
\begin{flushleft}
\bfseries Words
\end{flushleft}
\begin{flushleft}
Something,
\end{flushleft}
\end{document}

答案1

\begin{tabular}{@{}l}

@{}删除\tabcolsep

和段落缩进没关系,你有parskip=half,原因\noindent就多余了。

相关内容