Is it possible to place two figure environments evenly side-by-side at the same horizontal height with some text between them ?
In this question of mine, a partial solution has been provided to me, namely by provide a command that takes two pictures and places them evenly (across the horizontal) and allows for some text between them.
Here's the code of it, for those who don't want to follow the link (there's picture there too!):
\documentclass{article}
\usepackage[demo]{graphicx}
\begin{document}
Text Text Text Text Text Text Text Text Text Text Text Text Text Text
Text Text Text Text Text Text Text Text Text Text Text Text Text Text
Text Text
\begin{center}
\raisebox{\dimexpr-.5\height+.5\ht\strutbox}%
{\includegraphics[width=1in,height=1in]{black_square}}%
\hspace{.5in}%
and%
\hspace{.5in}%
\raisebox{\dimexpr-.5\height+.5\ht\strutbox}%
{\includegraphics[width=1in,height=1in]{black_square}}
\par\end{center}
Text Text Text Text Text Text Text Text Text Text Text Text Text Text
Text Text Text Text Text Text Text Text Text Text Text Text Text Text
Text Text
\end{document}
What I would like to do is to add some text below each picture, like "Figure : ", as if two figure-environments were places side-by-side, so that the number of the figure is reference-able.



\documentclass{...}and ending with\end{document}. – Jun 21 '14 at 09:01;-)– Jun 21 '14 at 09:22\hspace{xpt}and\vpspace{ypt}for some numbersx,yuntil it fits), which would be a waste of my time doing it and your time reading it. While I applaud your intentions, in this case they don't seem to be applicable. – l7ll7 Jun 21 '14 at 10:11intention: Just post a\documentclass{...}, the relevant\usepackagestatements and\begin{document}...\end{document}, so that other users here willing to help you do not have to do that tedious stuff. – Jun 21 '14 at 10:43captionpackage? Or do you want to do it internally? You didn't mention the necessity of changing any spacing on the fly, so maybe try it out. This question: http://tex.stackexchange.com/questions/95631/defining-a-new-type-of-floating-environment contains an example, including an alternative of defining your own floating environment if you feel you need it for this purpose. – 1010011010 Jun 21 '14 at 11:21