Wie lässt sich ein gleichmäßiger horizontaler Abstand erstellen?

Wie lässt sich ein gleichmäßiger horizontaler Abstand erstellen?

Ich möchte solche Abstände schaffen.

hraum

Aber die Verwendung von hspace erzeugt so etwas.

was ich möchte

minimaler Code

\documentclass[11pt]{article}

\begin{document}
\noindent Nama \hspace{10mm}: ... \\
NIS \hspace{10mm}: ... \\
Judul \hspace{10mm}: ...
\end{document}

Antwort1

Hier sind einige Möglichkeiten (ungetestet, sollten aber funktionieren):

Nr. 1:

\begin{tabular}{p{3cm}p{10cm}}
  Nama: & \dotfill\\
  NIS: & \dotfill\\
  Judul: & \dotfill
\end{tabular}

Nr. 2:

\parbox{3cm}{Nama:}\dotfill\\
\parbox{3cm}{NIS:}\dotfill\\
\parbox{3cm}{Judul:}\dotfill

Nr. 3:

\begin{minipage}{3cm}Nama:\end{minipage}\dotfill
\begin{minipage}{3cm}NIS:\end{minipage}\dotfill
\begin{minipage}{3cm}Judul:\end{minipage}\dotfill

Nr. 4 (erfordert enumitem):

\begin{itemize}[leftmargin=\dimexpr\leftmargin+3cm,labelwidth=3cm]
\item[Nama:] \dotfill
\item[NIS:] \dotfill
\item[Judul:] \dotfill
\end{itemize}

Nr. 5 (Mit freundlicher Genehmigung von egreg):

\makebox[3cm][l]{Nama:}\dotfill
\makebox[3cm][l]{NIS:}\dotfill
\makebox[3cm][l]{Judul:}\dotfill

Antwort2

Versuchen Sie es mit Folgendem:

\begin{tabular}{l@{\qquad:\,}l}
Nama & ... \\[6pt]
NIS & ... \\[6pt]
Judul & ... \\
\end{tabular}

Antwort3

So, mit einer angepassten descriptionUmgebung?

\documentclass[12pt]{article}
\usepackage{enumitem}

\begin{document}%

\begin{description}[labelwidth =25mm,labelsep = 0pt, font=\sffamily]
  \item[Nama] : \dotfill

\item[NIS]: \dotfill

\item[Judul]: \dotfill
\end{description}


\end{document} 

Bildbeschreibung hier eingeben

verwandte Informationen