Math & ScienceMath mode outside page border

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
exactos
Posts: 8
Joined: Sat Jul 24, 2010 10:47 pm

Math mode outside page border

Post by exactos »

I am trying to get all my text inside the page borders but this one seems to be giving me some trouble. Any ideas, guys?

Code: Select all

\documentclass[11pt]{article}
\usepackage{graphicx,latexsym,amsfonts,amssymb,amsmath,verbatim,theapa,lscape, multirow,
xcolor, booktabs, upgreek, caption}

\begin{document}

Similarly, the competitive marginal offers [\begin{math}\left(
{{\rm{start \!-\!up \;fee}} + {\rm{price \;per \;unit}} \times
{\rm{2}}} \right) \div 2 \end{math}] would have to be 20 during the
off-peak periods, 172 during the peak periods and 93 during the
shoulder 2 periods.


\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Math mode outside page border

Post by gmedina »

Hi,

why don't just rephrasing the sentence? Something like this would do (of course, I am not a native English speaker so try a better version)

Code: Select all

Similarly, [\begin{math}\left(
{{\rm{start \!-\!up \;fee}} + {\rm{price \;per \;unit}} \times
{\rm{2}}} \right) \div 2 \end{math}] which gives the competitive marginal offers, would have to be 20 during the
off-peak periods, 172 during the peak periods and 93 during the
shoulder 2 periods.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
CrazyHorse
Posts: 351
Joined: Sat Aug 02, 2008 8:47 am

Math mode outside page border

Post by CrazyHorse »

exactos wrote:I am trying to get all my text inside the page borders but this one seems to be giving me some trouble. Any ideas, guys?
use math only for the relevant symbols and not for the text

Code: Select all

\documentclass[11pt]{article}
\usepackage{amsmath}

\begin{document}

Similarly, the competitive marginal offers [start $-$ up fee
$+$ price per unit $\times 2) \div 2 $] would have to be 20 during the
off-peak periods, 172 during the peak periods and 93 during the
shoulder 2 periods.

\end{document}
Post Reply