The problem I have is that the spacing between the paragraphs are too large. I have tried the \setlength{\parskip}{0.1mm} command but it does not give the correct spacing that I want.
I have also tried \raggedbottom but neither does that work.
Here is some example code:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{titling}
\usepackage{blindtext}
\usepackage[a4paper, top=1cm]{geometry}
%\usepackage{parskip}
\setlength{\parskip}{0.1mm}
\raggedbottom
\title{Open Source och Licenser}
\author{Martin}
\begin{document}
\maketitle
\paragraph{}
\blindtext
\paragraph{}
\blindtext
\end{document}
I read in another thread that the parskip package would be good to use for this kind of problem, but I did not get it to work. As you can see I have commented the \usepackage{parskip} because all it does in my document is reducing the spacing between the title and the author lines.
Here is an image of how the document looks:
What I want to do is to reduce the spacing between the paragraphs so it is almost non existent. Is there any easy way to do that?



\paragraph{}... – Werner Jan 17 '17 at 19:08\paragraphwith paragraph -- the paragraph ;-) – Jan 17 '17 at 19:09\paragraph{}then the text just becomes one large paragraph. I still want the spacing in between but just a smaller one. – martin36 Jan 17 '17 at 19:13\par. The former is more readily used than explicitly typing\par. – Werner Jan 17 '17 at 19:14