How can we align Text and itemize starting with same margin?
This is my first sentence.
. this is first bullet point line.
. this is second bullet point line.
How can we align Text and itemize starting with same margin?
This is my first sentence.
. this is first bullet point line.
. this is second bullet point line.
I would recommend using the package enumitem. Then, you just add one line to your document:
\documentclass{article}
\usepackage{lipsum}
\usepackage{enumitem}
\setlist[itemize]{leftmargin=*}
\begin{document}
\lipsum[1]
\begin{itemize}
\item one
\item two
\end{itemize}
\lipsum[2]
\end{document}
I also utilized lipsum for some blind text.
The output is:
