{table*} or {figure*} to show across column
This will put the date, the page number, and your name at the bottom of every page:
\pagestyle{fancy}
\lfoot{\today}
\cfoot{\thepage}
\rfoot{Your Name Here}
from http://web.mit.edu/olh/Latex/rep-latex.html
Both within LaTeX’s \twocolumn and within the multicols environment defined by the multicol package (often preferrable to \twocolumn, since it balances the columns on the last page and lets you change between two- and one-column modes without starting a new page), you can insert full-width floats by using the starred form of the float environments: figure* and table*.
fromhttp://www.cse.iitd.ernet.in/~anup/homepage/UNIX/latex.html#onetableintwocolumns
\parbox[b]{2in}{I like using parbox to create funny little boxes of text all over my page. This one has its bottom edge aligned with the current line}
CURRENT LINE.
\parbox[t]{2in}{The top of my text is aligned with that current line.}
from http://www.artofproblemsolving.com/LaTeX/AoPS_L_GuideLay.php
\begin{figure}[ht]
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[scale=1]{filename1}
\caption{default}
\label{fig:figure1}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[scale=1]{filename2}
\caption{default}
\label{fig:figure2}
\end{minipage}
\end{figure}
from http://texblog.wordpress.com/2007/08/01/placing-figurestables-side-by-side-minipage/
No Comments Yet so far
Leave a comment
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <pre> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>