如何在 RMarkdown 中添加 un-indented 个项目符号

How to add un-indented bullets in RMarkdown

你能帮我弄清楚如何在 RMarkdown 中添加一些 un 缩进项目符号吗?

我在 Rmd 文件中试过,如下所示,其中 • abc 来自 copy-paste,而 *abc 应该是什么我想要,但它会自动缩进:How can I get un-indented bullets (that means the dot position from *abc should与header(测试Un-indent子弹)处于同一级别?

谢谢!

# Test Un-indent Bullets

abc

* abc

• abc

un-indented bullets

出现 auto-indent 是因为它正在注册为列表,我不确定如何禁用它。

这可能不完全您要查找的内容,但您可以尝试复制粘贴项目符号吗?

这一个就在这里:•

解决方法如下:

\begin{itemize}[leftmargin=*]
  \item one 
  \item two
  \item three
\end{itemize}

我从以下位置找到了这个:https://tex.stackexchange.com/questions/91124/itemize-removing-natural-indent

我可以把它放在 Rmd 文档中,输出 PDF 就是我想要的(没有缩进的项目符号)。

谢谢。