Question
EXTERNAL: Rotated text in table header rows (FOSI)
- December 12, 2012
- 6 replies
- 2808 views
For those of you following along at home, I hacked the TeX code in the FOSI to move the rotated text over to the right by changing the original code from this:
<usetext source="%\hbox{\special{pub:" rotate=" 90}%,10pt,#content,%}%"="></usetext>
To this:
<usetext source="%\hbox{" }\hbox{=" }\hbox{=" }\hbox{\special{pub:=" rotate=" 90}%,10pt,#content,%}%"="></usetext> (The curly braces in the initial 3 \hbox{ } "commands" need to have a space in them. Empty curly braces won't work.)
There is probably a better, more elegant and more "TeX-y" way of doing this, but for now, this works.
<usetext source="%\hbox{\special{pub:" rotate=" 90}%,10pt,#content,%}%"="></usetext>
To this:
<usetext source="%\hbox{" }\hbox{=" }\hbox{=" }\hbox{\special{pub:=" rotate=" 90}%,10pt,#content,%}%"="></usetext> (The curly braces in the initial 3 \hbox{ } "commands" need to have a space in them. Empty curly braces won't work.)
There is probably a better, more elegant and more "TeX-y" way of doing this, but for now, this works.

