#Spacing before paragraph
1 messages · Page 1 of 1 (latest)
When you say before paragraphs, in context do you mean?
Do you mean the space between, say, section header and the following first paragraph?
No, I mean like
Overleaf doesn't do anything to the default behaviour
this
,tex Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum
Vilgax
The reason why it's enabled for Overleaf is because they use article class, and article class enables it by default
The variable you're looking for is \parindent.
Explore how it behaves when you manipulate it as follows:
\setlength{\parindent}{ some length + dimension }
the final argument should contain both number and dimension
for example, 1em, 10pt, 5mm etc
If you want the behaviour to be persistent, add it to your preamble.
Do you know how?
it's ,preamble --add \setlength ....
and I can review it for you
ok
what is the dimension arg?
i set it with 70pt just to see a notorius change and it worked
for dimensions, most common options are ex (length of an x for the current font and font size), em (same as ex but length of an m), pt for points, mm and cm (obvious)
ex and em scale with your font, while the others don't
Done