Reputation: 11
Can you help me figure out how can I add some un-indented bullets in RMarkdown?
I tried it in Rmd file as below where • abc is from copy-paste, while *abc should be what I want, but it will automatically be indented: How can I get un-indented bullets (that means the dot position from *abc should be in the same level of the header (Test Un-indent Bullets)?
Thanks!
# Test Un-indent Bullets
abc
* abc
• abc
Upvotes: 0
Views: 1363
Reputation: 11
Here is the solution:
\begin{itemize}[leftmargin=*]
\item one
\item two
\item three
\end{itemize}
I found this one from: https://tex.stackexchange.com/questions/91124/itemize-removing-natural-indent
I can put this in the Rmd doc and the output PDF is what I want (bullets without indent).
Thanks.
Upvotes: 1
Reputation: 58
The auto-indent happens because it's registering as a list, and I'm not sure how to disable that.
This might not be exactly what you're looking for, but you could just try copy pasting the bullet point symbol?
This one right here: •
Upvotes: 0