Hi all,
does anybody happen to know what the default number of \intextsep command is in article.cls?
I changed it for a page but I want to continue with the default one for the following pages.
Thanks in advance.
Graphics, Figures & Tables ⇒ Default intextsep number in article.cls?
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Default intextsep number in article.cls?
It's an elastic measure determined by a certain TeX register. So resetting the value to that register after the concerned page should do.
But if you want to know the default value you can add a line in the body of your document before you set this length.
This will print the exact value in the final output.
Best regards
Thorsten
Code: Select all
\intextsep\skip32
Code: Select all
\the\intextsep
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Default intextsep number in article.cls?
Thanks a lot.