[Tex/LaTex] Creating bullets within a subsection

formatting

I'm fairly new to LaTeX, and I have no idea how to fix this. Basically I make a subsection using \section, and then create subsections using \subsectiond. Now I need to create bullets within the subsection, but I can't find syntax that works. Can anybody help me out?

Best Answer

It should work out if you just use the following syntax at the respective place in your document:

\begin{itemize}
\item First bullet point 
\item Another bullet point 
\item Add as many bullet points as you want
\end{itemize}

That way, it should be working, now matter whether you are writing within a section or a subsection or even a subsubsection. :)

Related Question