在段落前添加项目符号

在段落前添加项目符号

我想在段落前加一个项目符号?,我想在段落开始前加一个项目符号

    \documentclass{report}
        \usepackage{float}
        \begin{document}
        \chapter{ } %if you want a name write it as \chapter{name}
        init

        \section{seccion}

        \begin{figure}[H]
        \centering
        \rule{1cm}{1cm}% placeholder for graphic
         \caption{A figure}
        \end{figure}
        \paragraph{Parrafo} this is a paragraph 


this is not paragraph (
and should not have a bullet)
        \section{ seccion}

        \begin{figure}[H]
        \centering
        \rule{1cm}{1cm}% placeholder for graphic
        \caption{A figure}
        \end{figure}

         \end{document}

例子:

在此处输入图片描述

答案1

我不知道我是否理解了你的问题。在文本中,项目符号是用命令定义的,\textbullet而在数学模式下,你必须写$\bullet$

\paragraph{\textbullet Parrafo}

这给了我们以下信息:

子弹

\documentclass{report}
    \usepackage{float}
    \begin{document}
    \chapter{ } %if you want a name write it as \chapter{name}
    init

    \section{seccion}

    \begin{figure}[H]
    \centering
    \rule{1cm}{1cm}% placeholder for graphic
     \caption{A figure}
    \end{figure}
    \paragraph{\textbullet Parrafo} hola como esta todo el mundo

    \section{ seccion}

    \begin{figure}[H]
    \centering
    \rule{1cm}{1cm}% placeholder for graphic
    \caption{A figure}
    \end{figure}

     \end{document}

相关内容