Hi warrence,
concerning the lengths the geometry manual might be informative too.
Stefan
General ⇒ marginal notes outside the page
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
marginal notes outside the page
LaTeX.org admin
NEW: TikZ book now 40% off at Amazon.com for a short time.

marginal notes outside the page
thank you stefan and gmedina, that's quite interesting. unfortunatly it's not quite what i wanted.
actually i have some trouble with this:
which i use as a frame for a theorem environment ("amsthm"-package). this frame is wider than the textwidth, because the frames add some extra horizontal space. i could not figure out which length i have to subtract from the parbox-width to make it work...
@localghost:
in all of the documents including the header-files.
actually i have some trouble with this:
Code: Select all
\newcommand*{\theoremframe}[1]{\noindent\fbox{\hspace{\parindent}\parbox{\textwidth-2\parindent}{#1} \hspace{\parindent}}\\}
@localghost:
what problem do you mean? hyphenation works fine, because i useThis head-word makes me suggest you the hyphenat package. Perhaps it can solve the problem.
Code: Select all
\selectlanguage
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
marginal notes outside the page
Hi warrance,
the lengths you are looking are \fboxsep and \fboxrule, see here.
Substracting them should solve it:
You may notice I also removed one space near the end.
Stefan
the lengths you are looking are \fboxsep and \fboxrule, see here.
Substracting them should solve it:
Code: Select all
\newcommand*{\theoremframe}[1]{\noindent\fbox{\hspace{\parindent}%
\parbox{\textwidth-2\parindent-2\fboxsep-2\fboxrule}{#1}\hspace{\parindent}}\\}
Stefan
LaTeX.org admin
Re: marginal notes outside the page
oh... amazing. i'll check these packages out. looks promising!
thanks alot
thanks alot
