Graphics, Figures & TablesDefault intextsep number in article.cls?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Christos
Posts: 25
Joined: Sun Nov 30, 2008 10:06 pm

Default intextsep number in article.cls?

Post by Christos »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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?

Post by localghost »

It's an elastic measure determined by a certain TeX register. So resetting the value to that register after the concerned page should do.

Code: Select all

\intextsep\skip32
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.

Code: Select all

\the\intextsep
This will print the exact value in the final output.


Best regards
Thorsten
Christos
Posts: 25
Joined: Sun Nov 30, 2008 10:06 pm

Re: Default intextsep number in article.cls?

Post by Christos »

Thanks a lot.
Post Reply