LaTeX Typesetting Long Division in LaTeX: Tips and Tricks for Accurate Equations

  • Thread starter Thread starter DivGradCurl
  • Start date Start date
  • Tags Tags
    Division Latex
AI Thread Summary
The discussion centers on typesetting long division in LaTeX, specifically the expression involving \frac{1}{\cos x}. A user initially shared a code snippet but found it did not produce the desired output. Another user provided a solution that included specific preamble commands and a more complex array structure to achieve the correct formatting. Additionally, there were inquiries about importing graphics from Mathematica, particularly concerning issues with .eps files. It was clarified that .eps files require the use of the dvips option in the graphicx package, while pdfLaTeX supports .png and .jpg formats. Users also discussed converting graphics to PDF for compatibility and shared experiences with Mathematica's export capabilities. Lastly, there were questions about page numbering in LaTeX documents, with suggestions on how to set the starting page number.
DivGradCurl
Messages
364
Reaction score
0
Does anyone know a way to typeset a long division in LaTeX? I'm particularly interested in:

\frac{1}{\cos x} = \frac{1}{1-\frac{x^2}{2!}+\frac{x^4}{4!}-\cdots}

Thanks
 
Physics news on Phys.org
Hi thiago,
Use the following code. Use pdflatex for making the pdf file.

documentclass{article}
\begin{document}
\Huge
${1\over{cosx}}= {1\over{1-{x^2\over{2!}}+{x^4\over{4!}}-...}} $\\
\end{document}

Gulumal
o:)
 
I tried that... but it gives exactly what I put down initially:

\frac{1}{\cos x} = \frac{1}{1-\frac{x^2}{2!}+\frac{x^4}{4!}-\cdots}

In fact, I've just figured it out. This goes in the preamble:

Code:
\usepackage{array}
\setlength{\extrarowheight}{0.12cm}

and this is the final code:

Code:
\begin{equation*}
\begin{array}{rc@{}c}
& \multicolumn{2}{l}{\, \, \, 1+\frac{1}{2}x^2 +\frac{5}{24}x^4-\dotsb} \vspace*{0.12cm} \\ \cline{2-3}
\multicolumn{1}{r}{1-\frac{1}{2!}x^2+\frac{1}{4!}x^4-\dotsb \hspace*{-4.8pt}} & \multicolumn{1}{l}{ \hspace*{-5.6pt} \Big) \hspace*{4.6pt} 1} \\
& \multicolumn{2}{l}{\, \, \, 1-\frac{1}{2!}x^2+\frac{1}{4!}x^4-\dotsb} \vspace*{0.12cm} \\ \cline{2-3}
& \multicolumn{2}{l}{\, \, \, \phantom{1{}-{}} \frac{1}{2!}x^2-\frac{1}{4!}x^4+\dotsb} \\
& \multicolumn{2}{l}{\, \, \, \phantom{1{}-{}} \frac{1}{2!}x^2-\frac{1}{\left(2!\right)^2}x^4+\dotsb} \vspace*{0.12cm} \\ \cline{2-3}
& \multicolumn{2}{l}{\, \, \, \phantom{1{}-{}\frac{1}{2!}x^2{}-{}} \frac{5}{24}x^4-\dotsb}
\end{array}
\end{equation*}

Thanks, anyway. If there is a simpler way to do this, please let me know. :smile:
 
I'm trying to input a graphics file from Mathematica, but I'm having an error which says: unknown graphics extension: .eps Can anyone help me?
 
.eps doesn't work with \usepackage[pdftex]{graphicx}

Hi.

You cannot use .eps files with

\usepackage[pdftex]{graphicx}

but instead you need to use

\usepackage[dvips]{graphicx}

However, with this you cannot use .png or .jpg files.

I usually take a screenshot (usally GeoGebra or Mathematica), save it as .png file and use the pdftex-graphicx package. Tell me if you have a better solution. I always make the conversion to pdf because couldn't make the .dvi file.
 
thank you for your reply. I am using latex and I'm using a feature called {gsm-l} which changes the format of the first page of every chapter. The problem is that the pdf document I'm writing starts from the 3rd page not from 1st page. Please can you help me with this??
 
Probably not, I'm not sure if I understand the problem...

If the problem if with page numbering, you can set it by \setcounter{page}{3}so the current page gets the number 3.

If you want your {gsm-l} "be in effect" only from page 3 on, or you have 2 blank pages in the beginning, I don't know how to help.
 
camillerinadia said:
I'm trying to input a graphics file from Mathematica, but I'm having an error which says: unknown graphics extension: .eps Can anyone help me?

I had this problem in the past with eps files generated by Mathematica 5.2 but the new Mathematica 6.0 does a much better job and import and export of all kinds. Back when I had the same problem, I would load the eps from Mathematica into Adobe Illustrator, and then export it again and it would work in my LaTeX document!
 
thiago_j said:
Does anyone know a way to typeset a long division in LaTeX? I'm particularly interested in:

\frac{1}{\cos x} = \frac{1}{1-\frac{x^2}{2!}+\frac{x^4}{4!}-\cdots}

Thanks
In cases like this, when placing a fraction would become really ugly, I'd usually resort to something like
\left( 1-\frac{x^2}{2!}+\frac{x^4}{4!}-\cdots \right)^{-1}
or the uglier
1 / \left( 1-\frac{x^2}{2!}+\frac{x^4}{4!}-\cdots \right)


camillerinadia said:
I'm trying to input a graphics file from Mathematica, but I'm having an error which says: unknown graphics extension: .eps Can anyone help me?
Which version of Mathematica do you have? Mathematica 6.0 can now export in PDF format, which pdfLaTeX can handle very well. Otherwise, you'd have to use something like PNG or use (e)ps2pdf (should be included in your LaTeX distribution) to convert the exported (e)ps to a pdf (but problems may occur, in particular watch out with the bounding boxes).
 

Similar threads

Replies
5
Views
3K
Replies
1
Views
2K
Replies
4
Views
3K
Replies
5
Views
2K
Replies
11
Views
5K
Replies
8
Views
3K
Replies
2
Views
2K
Back
Top