> Hi,
>
> I have to put array of images (2x2 array = total 4 images) in two-column
> format. Though I am able to do it, the problem with the text (which is
> following the images) will be overwritten on the right-column. So,
>
> 1. How do one can place the images(array) in the right place,
> *preferably
> on top of the page*? (so that, just after the image/ figures, the text
> should follow in two-column format)
> 2. What is this latex error: *unknown graphics extension: .eps* (I am
> using \usepackage{graphicx})*
> ** +* 1.353 \includegraphics[width=3.4in]{img.eps} *
> *
>
> For this I have used the following:
> -------------------------------------
> \begin{figure}[h]
> \begin{center}$
> \begin{array}{cc}
> \includegraphics[width=3.4in]{A.eps} &
> \includegraphics[width=3.4in]{B.eps}\\
> \includegraphics[width=3.4in]{C.eps} &
> \includegraphics[width=3.4in]{D.eps}
> \end{array}$
> \end{center}
> \caption{\ micrographs of ABCD}
> \label{fgr:1}
> \end{figure}
> -------------------------------------------------
>
> What is the solution,
>
You can find the answer in TeX FAQ:
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=widefigs
Just replace \begin{figure} \end{figure} by \begin{figure*} and
\end{figure*}. This way your floating figure will expand over twocolumns.
In any case it's better not to include .eps or .pdf in \includegraphics
commands. This way your latex/pdflatex will select
which type it prefers. LaTeX accept .eps but not .pdf and pdflatex the
other way.
Also in TeX FAQ: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=unkgrfextn
Best regards,
Ignasi
Hi,
I have to put array of images (2x2 array = total 4 images) in two-column format.
Though I am able to do it, the problem with the text (which is following the images) will be overwritten on the right-column.
So,
- How do one can place the images(array) in the right place, preferably on top of the page? (so that, just after the image/ figures, the text should follow in two-column format)
- What is this latex error: unknown graphics extension: .eps (I am using \usepackage{graphicx})
+ 1.353 \includegraphics[width=3.4in]{img.eps}
For this I have used the following:
-------------------------------------
\begin{figure}[h]
\begin{center}$
\begin{array}{cc}
\includegraphics[width=3.4in]{A.eps} & \includegraphics[width=3.4in]{B.eps}\\
\includegraphics[width=3.4in]{C.eps} & \includegraphics[width=3.4in]{D.eps}
\end{array}$
\end{center}
\caption{\ micrographs of ABCD}
\label{fgr:1}
\end{figure}
-------------------------------------------------
What is the solution