- #1
fluidistic
Gold Member
- 3,948
- 264
Latex "help" needed, about text between 2 images
I'm having troubles to place a text between 2 images.
The code looks like this:
What is displayed is: "Some text here", then the first image and then the last image. I would like the "Some text here" to be placed in between the two images.
I have tried google and some suggestions, such as using \usepackage{float} and adding an "[H]" at the end of the \centerline line.
Also tried \par \bigskip in between the two images. No luck so far.
I'm having troubles to place a text between 2 images.
The code looks like this:
Code:
\begin{figure}[ht]
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[width=\textwidth]{vvalue}
\caption{value1}
\label{test1}
\end{minipage}
\hspace{0.0cm}
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[width=\textwidth]{wvalue}
\caption{value2}
\label{test2}
\end{minipage}
\end{figure}
Some text here.
\centerline{\includegraphics[scale=0.36, resolution=900]{test126}}
What is displayed is: "Some text here", then the first image and then the last image. I would like the "Some text here" to be placed in between the two images.
I have tried google and some suggestions, such as using \usepackage{float} and adding an "[H]" at the end of the \centerline line.
Also tried \par \bigskip in between the two images. No luck so far.