4

How can I flip a figure in my LaTeX file around horizontal axis? The figures reside in subfigure.

Alexis Pigeon
  • 7,423
  • 11
  • 39
  • 44
Zoran
  • 459
  • 1
  • 6
  • 19
  • 2
    LaTeX related questions are better posted at [TeX.SE](http://meta.tex.stackexchange.com/questions/1436/welcome-to-tex-sx). I have flagged this for migration. – Peter Grill Nov 23 '12 at 08:15

1 Answers1

10

here is the solution:

add to preamble

\usepackage{graphics}

then the following does the trick.

\scalebox{1}[-1]{ \includegraphics[width=0.50\columnwidth] {test.eps} }
Zoran
  • 459
  • 1
  • 6
  • 19