[Tex/LaTex] How to add space before and after paragraph

paragraphsspacing

I have text in this structure (simplified):

\paragraph{\textbf{\uv{Main question is.... ?}}}

Main question is divided into three subquestions....    

\paragraph{Sub question 1.} Sub question 1.....
\paragraph{Sub question 2.} Sub question 2.....
\paragraph{Sub question 3.} Sub question 3.....

but paragraph "Main question is divided into three…" is placed immediately after previous paragraph but I would like to place some space before and after this paragraph. For some reason (for me unknown) tag \vspace doesn't work.

How can I create space between these paragraphs?

Best Answer

You can use \bigskip with a blank line before like this:

\paragraph{\textbf{\uv{Main question is.... ?}}}

\bigskip
Main question is divided into three subquestions....    
Related Question