Page Layoutsentence layout

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
avivlavan
Posts: 1
Joined: Mon Feb 14, 2022 12:19 pm

sentence layout

Post by avivlavan »

hello everyone
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
Capture.PNG (11.82 KiB) Viewed 1087 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

sentence layout

Post by Stefan Kottwitz »

Hi,

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}
It seems you are doing something different. Can you show us the code?

Stefan
LaTeX.org admin
Post Reply