[Tex/LaTex] How to underline header paragraph section in Latex

sectioningsections-paragraphstitlesec

I've read a lot of questions that are quite similar to mine, but I couldn't make any of them work properly. What I'd like is to have below the "subsubsection" the paragraph (not numbered and not included in the indeces).

I would like the header of the paragraph to be underlined, bold and the rest of the text beginning after a new line. I've tried ulem and sectsty, but non of them worked as desired. Currently I'm using the following code:

\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}

Any suggestions? Thank you in advance for your replies!

Best Answer

This works fine for me (although underlining tiles is not at all advisable: it was used in the times of typewriters, because one could not do any better):

\documentclass{article}
\usepackage{ulem}
\usepackage{titlesec}

 \titleformat{\paragraph}[hang]{\bfseries}{}{0pt}{\uline}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}

\begin{document}

\paragraph{test}
Text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.

\end{document} 

enter image description here