Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between \hsize, \linewidth, \textwidth and \pagewidth? Which are affected by environments (like an enumeration or a minipage)? Did I miss any useful width lengths?

share|improve this question
google... or rtfm? – Mica Jun 24 '10 at 17:00
4  
haha, I like "you want fries with that?" Which manual, by the way? – Geoff Jun 25 '10 at 13:29

3 Answers

up vote 9 down vote accepted

There are many more lengths useful to layout in LaTeX. The ones related to "page" layout are mostly here:

http://en.wikibooks.org/wiki/LaTeX/Page_Layout

\linewidth is width of text in current environment.

I myself am not sure about how \hsize relates to the others, although I think it's supposed to be the width of text on the page.

share|improve this answer
+1 Great link, thanks. – Geoff Jun 25 '10 at 14:01

Further to what Herbet & Alexey say, \textwidth usually does not change while a Latex document is being typeset, and should normally be the width of the bounding box in which all the text inside paragraphs sit in.

\linewidth is a contextual dimension that becomes narrower in environments with indentation, such as list environments. It should be the actual width of the current paragraph.

But of course with macro hackery, you can break any rule you feel like.

share|improve this answer

\hsize is a TeX primitive. It is always the width of the current paragraph. \hsize is set at the \begin{document} point depending on \textwidth, 1-page or 2-page and the marging.

share|improve this answer
You have \hsize twice, is the second supposed to be \pagewidth? – Geoff Jun 25 '10 at 13:28
1  
No. Right. \hsize twice. – Alexey Malistov Jun 25 '10 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.