Page Layout ⇒ sentence layout
sentence layout
i have a problem whem Im trying to itemize a sentence but not in the beginning of the page, when my sentence is too long and drops to the next column it starts in the beginning of the page instead of where the itemize starts
thats how it looks. i want it to start exactly under the "L" and I tried using \hspace it doesn't help
- Attachments
-
- Capture.PNG (11.82 KiB) Viewed 1536 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
sentence layout
welcome to the forum!
The default behavior of itemize is to align the text. Take a look, click on "Run with LaTeX":
Code: Select all
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\begin{itemize}
\item One point
\item A second point
\item \blindtext
\end{itemize}
\end{document}
Stefan