Because of a previous question of mine regarding how can someone typeset a mathematical document I understood that the best way is to make every customization globally. Having tried it I think that this is indeed the best way. But I have a problem with parskip package. When I try to change the vertical space between the paragraphs automatically also changes the vertical space between the hline and the paragraph below it (under sections, subsections etc I use \hline to separate the title from the text below it) and also the space between the items in an itemize environment. I have not yet tried it extensively so I can only guess that there would be more undesirable side-effects. I have found a lot of similar questions regarding environments like itemize but not how to prevent parskip mess up every other vertical space. How can I make the changes in parskip not to affect other spaces rather than the space between two paragraphs?
\documentclass[12pt]{article}
\usepackage
[
top=0.7in,
bottom=1.2in,
left=0.8in,
right=0.8in
]{geometry}
%=================================================
%=================================================
\usepackage{parskip}
\setlength{\parindent}{0cm}
%=================================================
%=================================================
\usepackage[fleqn]{amsmath}
\usepackage{unicode-math}
%Package unicode-math loads fontspec too
%=================================================
%=================================================
\usepackage{fontspec}
\usepackage[english,greek]{babel}
\setmainfont
[
Ligatures=TeX,
Extension=.otf,
UprightFont=*,
BoldFont=*Bold,
ItalicFont=*It,
BoldItalicFont=*BoldIt,
Mapping=tex-text
]{GFSArtemisia}
\setsansfont[Mapping=tex-text]{GFSArtemisia.otf}
%Math fonts
\setmathfont{latinmodern-math.otf}
\setmathfont[range=\varnothing]{Asana-Math.otf}
\setmathfont[range=\int]{latinmodern-math.otf}
\newcommand{\srr}
{
\hrule
\vspace{1cm}
}
\begin{document}
\section{Θεωρία Συνόλων}
\srr
Για τις πράξεις ανάμεσα σε ενδεχόμενα ισχύουν:
\begin{itemize}
\item η αντιμεταθετική
\item η προσεταιριστική
\item η επιμεριστική
\end{itemize}
Θεωρούμε ότι έχουμε $n$ ενδεχόμενα.
Η ένωση τους είναι ένα ενδεχόμενο που εμφανίζεται όταν εμφανιστεί τουλάχιστον ένα από αυτά.
Η τομή τους είναι ένα ενδεχόμενο που εμφανίζεται όταν εμφανιστούν όλα μαζί.
Ασυμβίβαστα ανά δύο ονομάζονται $n$ ενδεχόμενα όταν η εμφάνιση του ενός αποκλείει την εμφάνιση οποιουδήποτε άλλου:
\begin{equation}
A_{i}\cap A_{j}=\varnothing
\end{equation}
\subsection{Κανόνες De Morgan}
\srr
Οι κανόνες De Morgan είναι:
\begin{align}
(A\cup B)'&=A'\cap B'\\
(A\cap B)'&=A'\cup B'
\end{align}
\end{document}
\everymath{\displaystyle}. I'll tell you this every time I'll see the wrong instruction. – egreg Oct 21 '14 at 20:38parskip. – Adam Oct 21 '14 at 20:45\srrand (if you want underlined section titles) redefine the section format to put them in (while compensating for any positive value of\parskip)secstypackage can help with section heading formatting. – David Carlisle Oct 21 '14 at 21:19\everymath{\displaystyle}you'll upset @egreg and hurt the eyes of any readers of the document:-) – David Carlisle Oct 21 '14 at 21:21scrartcl) which, apart from lots of nice features, gives you the keyparskip=halforparskip=full(it can be passed as an option to\documentclassor as an argument to\KOMAoptions. – Manuel Oct 21 '14 at 21:36