Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I'd recommend trying the <a href="http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=chngpage" rel="noreferrer"><code>chngpage</code></a> package.</p> <pre><code>\documentclass{article} % allows for temporary adjustment of side margins \usepackage{chngpage} % provides filler text \usepackage{lipsum} % just makes the table prettier (see \toprule, \bottomrule, etc. commands below) \usepackage{booktabs} \begin{document} \lipsum[1]% just a paragraph of filler text \medskip% adds some space before the table \begin{adjustwidth}{-1in}{-1in}% adjust the L and R margins by 1 inch \begin{tabular}{ll} \toprule Sequence &amp; Wide column \\ \midrule First &amp; Vestibulum porta ultricies felis. In nec mi. \\ Second &amp; Nam vestibulum auctor nibh. In eleifend, lacus id tristique ullamcorper, mauris urna convallis elit. \\ Third &amp; Ut luctus nisi quam lobortis magna. Aenean sit amet odio et sapien rutrum lobortis. \\ Fourth &amp; Integer dictum accumsan purus. Nullam erat ligula, dictum sed, feugiat nec, faucibus id, ipsum. \\ \bottomrule \end{tabular} \end{adjustwidth} \medskip% adds some space after the table \noindent\lipsum[2]% just a paragraph of filler text \end{document} </code></pre> <p>The documentation for the <code>chngpage</code> package is located at the bottom of the <code>chngpage.sty</code> file. I've pulled out the docs for the <code>adjustwidth</code> environment:</p> <blockquote> <p>Within an adjustwidth environment the left and right margins can be adjusted. The environment takes one optional argument and two required length arguments: </p> <p><code>\begin{adjustwidth}[]{leftmargin}{rightmargin}</code></p> <pre><code>A positive length value will increase the relevant margin </code></pre> <p>(shortening the text lines) while a negative length value will decrease the margin (lengthening text lines). An empty length argument means no change to the margin. At the end of the environment the margins revert to their original values.</p> <p>For example, to extend the text into the right margin:</p> <p><code>\begin{adjustwidth}{}{-8em}</code></p> <p>Any appearance of the optional argument (even just <code>[]</code>) will cause the values of the margins to switch between odd and even pages.</p> <p>If the document is being set twosided it might be advantageous to have any wider text extending into the outside margin. This could be done via the optional argument, as:</p> <p><code>\begin{adjustwidth}[]{}{-8em}</code></p> <p>To have the adjusted text horizontally centered with respect to any surrounding text, the margins should be adjusted equally:</p> <p><code>\begin{adjustwidth}{-4em}{-4em}</code></p> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload