Text FormattingStarting text lines w/o space

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
karlisrepsons
Posts: 50
Joined: Sat May 23, 2009 10:13 pm

Starting text lines w/o space

Post by karlisrepsons »

It would be perfectly fine, if output of this could be started at the beginning of line or at the same position as new line:

Code: Select all

\begin{verse}
 For developers:

 \begin{itemize}
  \item how to write the source files,
  \item how to test the machine executables.
 \end{itemize}
 
 For compiler: how to produce machine executables.
 
 For hardware: how to execute the compiler output.
 
 For the software users: how to use the resulting software.
\end{verse}
But its with a wide space in front of each line. Any idea?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Starting text lines w/o space

Post by frabjous »

Why are you using a verse environment if you don't want it to be indented?

Also, why are you using paragraph breaks, rather than line breaks?

Why not just this:

Code: Select all

\noindent For developers:
\begin{itemize}
  \item how to write the source files,
  \item how to test the machine executables.
\end{itemize}
For compiler: how to produce machine executables.\\
For hardware: how to execute the compiler output.\\
For the software users: how to use the resulting software.\\
If you want it to be set off horizontally, you could use something like \bigskip at the beginning and the end.

The itemize bullets will still be indented. If you don't want those indented either then load the enumitem package, and use "\begin{itemize}[leftmargin=*]".
Post Reply