How to set the text width of only one page? Or how to set text width of only one paragraph, one line?
T*n
2 楼
Try the minipage environment (you can optionally specify the height), followed by a \clearpage if needed. Try either minipage or \parbox, or define your own environment using something like the following to make the special paragraph indented 0.5 inch on both left and right sides (negative length will make the paragraph wider than normal text width): \newenvironment{specialpar}% {\list{}{\setlength{\leftmargin}{0.5in}\setlength{\rightmargin}{0.5in}}\item }% {\endlist} \begin{specialpar} tex
【在 z*****n 的大作中提到】 : How to set the text width of only one page? : Or how to set text width of only one paragraph, one line?
z*n
3 楼
thx, I tried parbox, it seems that it cannot break a page...
item
【在 T*******n 的大作中提到】 : : Try the minipage environment (you can optionally specify the : height), followed by a \clearpage if needed. : Try either minipage or \parbox, or define your own environment : using something like the following to make the special paragraph : indented 0.5 inch on both left and right sides (negative length will : make the paragraph wider than normal text width): : \newenvironment{specialpar}% : {\list{}{\setlength{\leftmargin}{0.5in}\setlength{\rightmargin}{0.5in}}\item : }%
z*n
4 楼
the 3rd method works. Thanks!
item
【在 T*******n 的大作中提到】 : : Try the minipage environment (you can optionally specify the : height), followed by a \clearpage if needed. : Try either minipage or \parbox, or define your own environment : using something like the following to make the special paragraph : indented 0.5 inch on both left and right sides (negative length will : make the paragraph wider than normal text width): : \newenvironment{specialpar}% : {\list{}{\setlength{\leftmargin}{0.5in}\setlength{\rightmargin}{0.5in}}\item : }%