I am trying to use \textbullet\ in a text like \item from the itemize environment. So far, I have come up with the code below. However, I do not want to use \newline at the beginning of my new command but need to have Tex jump to the next line after "my first bullet point" and "my second bullet point".
Please see my (ugly) MWE:
\documentclass{article}
\newcommand{\myitem}{\newline \textbullet~~}
\begin{document}
Header
\myitem my first bullet point
\myitem my second bullet point
\end{document}
How would I have to rewrite my new command? Is there a solution for this?
Any help is greatly appreciated!
\par. – Pieter van Oostrum Apr 08 '21 at 08:11