home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / text / tex / 13400 < prev    next >
Encoding:
Text File  |  1992-11-20  |  1.7 KB  |  50 lines

  1. Path: sparky!uunet!cs.utexas.edu!uwm.edu!caen!destroyer!cs.ubc.ca!unixg.ubc.ca!reg.triumf.ca!asnd
  2. From: asnd@reg.triumf.ca (Donald Arseneau)
  3. Newsgroups: comp.text.tex
  4. Subject: Re: HELP: attack of \vbox and \hbox
  5. Date: 20 Nov 1992 23:20 PST
  6. Organization: TRIUMF: Tri-University Meson Facility
  7. Lines: 36
  8. Distribution: world
  9. Message-ID: <20NOV199223205120@reg.triumf.ca>
  10. References: <By0yFz.DoH@news.cso.uiuc.edu>
  11. NNTP-Posting-Host: reg.triumf.ca
  12. News-Software: VAX/VMS VNEWS 1.41    
  13.  
  14. In article <By0yFz.DoH@news.cso.uiuc.edu>, schneid@uxa.cso.uiuc.edu (Mike Schneider) writes...
  15. % >I need a plain TeX solution for this problem.  I want to have
  16. % >text displayed on the page like this:
  17. % > 
  18. % > blah blah qwe qwa asd asdf asdf asdf             $1000
  19. % > asdf asdf asdf asdf sadf adf asdf 
  20. % > 
  21. % > asdf asdf asdfasd asdf asdf adf asdf            $1500
  22. % > 
  23. % > asdf asdf   asdf asdf asdf asdf asdf            $3000
  24. % > asdf asdf asdf asdf asdf asdf asf
  25. % > asdf asd asdfas asdfasdf asdfasdf
  26. % > 
  27. % >Of course the text I am using isn't really "blah asdf etc."
  28. % >My problem is that the whole thing need to be in a vertical box
  29. % >and one can't specify the *width* of a vbox, right?  I want the
  30. % >text in each subsection to be in paragraph form.  Let's say
  31. % >textwidth of 5 inches, .5 inch between text and $amounts,
  32. % >pagewidth of 6.5 inches.  HELP!
  33.  
  34.  
  35. \def\amount#1{\par\noindent
  36.   \hbox to0pt{\kern\hsize \kern-\rightskip \kern.5in 
  37.   \$#1\hss}\ignorespaces}
  38.  
  39. \vbox{
  40. \hsize=6.5in \rightskip=6.5in \advance\rightskip -5in\relax
  41.  
  42. \amount{1000} blah blah qwe qwa asd asdf asdf asdf
  43. asdf asdf asdf asdf sadf adf asdf 
  44.  
  45. \amount{1500}asdf asdf asdfasd asdf asdf adf asdf
  46.  
  47. }
  48.  
  49. \bye        Donald Arseneau          asnd@reg.triumf.ca
  50.