I am trying to learn how to use Texmaker (just for the record, I don't know a single thing about programming or Latex) and I am having some difficulty to create space between paragraphs or between lines. For example, I start my document with:
\documentclass[11pt]{article}
\begin{document}
Semisimple modules
Theorem...
\end{document}
I want to leave an empty line between "Semisimple modules" and "Theorem...", how can I do this?
Remember that I am a completely newbie with Texmaker (and with programs in general...) so please be patient with me if I ask too obvious things or if I make silly mistakes. Thanks in advance.

\documentclass{...}and ending with\end{document}. You might also want to add to your question how you're including the pdfs etc. – Aradnix Oct 18 '14 at 06:53parskip? – Johannes_B Oct 18 '14 at 06:56Theorem...`
would do the trick, if you only want to insert a blank line.
– Bernard Oct 18 '14 at 09:22blankspace between paragraphs — and I understood it as ‘between two particular paragraphs’, so I couldn't simply say\setlength\parskip{\baselineskip}, which would be global. Unless I misunderstood thz O.P.'s requirement? – Bernard Oct 18 '14 at 16:58