Math & Science ⇒ One column math formula in 2-column mode paper
One column math formula in 2-column mode paper
I am going to prepare a paper. However, I meet a problem of presenting very long math formula in 2-column mode the same as example in this attachment. Please, somebody tell me how. I greatly appriciate for your helps.
- Attachments
-
- 4400467144_f990e3ef30.jpg (93.73 KiB) Viewed 25686 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: One column math formula in 2-column mode paper
I have not tried anything that before, therefore this is just a way to get ideas rolling.
Did you try putting your long math equation into a minipage that would spread over the two column?
Did you try getting into a one column format just for the math environment?
Cheers
One column math formula in 2-column mode paper
Which document class are you using? Perhaps you could use the multicol package to switch between two and one-column mode.
Re: One column math formula in 2-column mode paper
@fatra2: I want to present my paper similar to the example in attached picture. I means It includes horizon line and long math, numbered equations.
@gmedina: I have tried muticol package with my current document class IEEEtran.cls, but it still doesn't work corectly. Gmedina, would you please post an intuitive example code for switching from 2-column to 1-column mode and vice versa. I greatly appreciate for your helps.
Best Regards
One column math formula in 2-column mode paper
-
- Posts: 1
- Joined: Mon Mar 08, 2010 6:24 pm
One column math formula in 2-column mode paper
Code: Select all
\begin{figure*}
\hline
\begin{equation}
%write your equation here
\end{equation}
\end{figure*}
One column math formula in 2-column mode paper
So? This is exactly what I suggested in my previous reply.shopaholiconline wrote:Code: Select all
\begin{figure*} \hline \begin{equation} %write your equation here \end{equation} \end{figure*}
Re: One column math formula in 2-column mode paper
Thanks very much for intuitive examples. I tried and got the folowing error:
! Misplaced \noalign.
\hline ->\noalign
If I remove \hline, it works well and has no separate line. Can anybody help me!! Thanks very much.
- svend_tveskaeg
- Posts: 478
- Joined: Sun Jul 12, 2009 5:31 am
Re: One column math formula in 2-column mode paper
-- Zapp Brannigan, Futurama (season 1, episode 4)
One column math formula in 2-column mode paper
I didn't notice that error in shopaholiconline's code. Replace \hline with \hrule.