[Tex/LaTex] Put a bullet before paragraph

paragraphs

I want put a bullet before paragraph ?, I want to put a bullet before the paragraph starts

    \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}

example:

enter image description here

Best Answer

I don't know if I understood your question correctly. In the text the bullets are defined with the command \textbullet while in mathematics mode you have to write $\bullet$

\paragraph{\textbullet Parrafo}

Which gives us here:

bullet

\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}