Every LaTeX document class predefines various lengths used by that class e.g. various indents, various margins, line spacing etc. Is there a way to find out all these lengths from within a LaTeX docuent ?
Can someone guide me please?
partha
General ⇒ Finding predefined lengths
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Finding predefined lengths
package printlen
Code: Select all
\documentclass{article}\usepackage{printlen}
\begin{document}
\verb!\textwidth! is \printlength{\textwidth}
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Finding predefined lengths
Thank you. You solved this mystery for me.
partha
partha