GeneralDouble column page, Long Equation

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ali.m
Posts: 2
Joined: Fri Jan 02, 2009 5:45 pm

Double column page, Long Equation

Post by ali.m »

Hi:

I am wondering, if anybody knows how to write a long equation at the bottom of the double column paper.

i have written the equation by \begin{figure*} but the problem is that the equation stays at the top of the page ([b!] dosent work at this method that i used)

Code: Select all

\begin{figure*}[!b]
% ensure that we have normalsize text
\normalsize
% Store the current equation number.
\setcounter{MYtempeqncnt}{\value{equation}}
% Set the equation number to one less than the one
% desired for the first equation here.
% The value here will have to changed if equations
% are added or removed prior to the place these
% equations are referenced in the main text.
\setcounter{equation}{5}
\begin{equation}
\label{eqn_dbl_x}
x = 5 + 7 + 9 + 11 + 13 + 15 + 17 + 19 + 21+ 23 + 25
+ 27 + 29 + 31
\end{equation}
\begin{equation}
\label{eqn_dbl_y}
y = 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 + 20+ 22 + 24
+ 26 + 28 + 30
\end{equation}
% Restore the current equation number.
\setcounter{equation}{\value{MYtempeqncnt}}
% IEEE uses as a separator
\hrulefill
% The spacer can be tweaked to stop underfull vboxes.
\vspace*{4pt}
\end{figure*}

Recommended reading 2024:

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

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

corderin
Posts: 77
Joined: Sun Dec 14, 2008 2:27 pm

Re: Double column page, Long Equation

Post by corderin »

You could try with \vspace*{} at the beginning and a minipage environment...



\vspace*{15cm}
\begin{minipage}[!b]{\textwidth}
% ensure that we have normalsize text
\normalsize
% Store the current equation number.
\setcounter{MYtempeqncnt}{\value{equation}}
% Set the equation number to one less than the one
% desired for the first equation here.
% The value here will have to changed if equations
% are added or removed prior to the place these
% equations are referenced in the main text.
\setcounter{equation}{5}
\begin{equation}
\label{eqn_dbl_x}
x = 5 + 7 + 9 + 11 + 13 + 15 + 17 + 19 + 21+ 23 + 25
+ 27 + 29 + 31
\end{equation}
\begin{equation}
\label{eqn_dbl_y}
y = 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 + 20+ 22 + 24
+ 26 + 28 + 30
\end{equation}
% Restore the current equation number.
\setcounter{equation}{\value{MYtempeqncnt}}
% IEEE uses as a separator
\hrulefill
% The spacer can be tweaked to stop underfull vboxes.
\vspace*{4pt}
\end{minipage}
User avatar
Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

Double column page, Long Equation

Post by Juanjo »

This thread can be of interest, since it is strongly related.
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
ali.m
Posts: 2
Joined: Fri Jan 02, 2009 5:45 pm

Re: Double column page, Long Equation

Post by ali.m »

Hi:
Thanks for your reply.

corderin: your solution is interesting but doesn't work properly, cause either the equation overlaps with text or jumps to the end of last page.

Juanjo: Thanks for your comment too. However i couldnt fix it yet.

I am still searching to find solution :)

Ali
Post Reply