[Tex/LaTex] How to rotate a ‘sidewaysfigure’

rotating

I would like to rotate mysidewaysfigure to face towards the left rather than the right (i.e. from 90 degreed to 270 degrees). Does anyone know how I can do this using the sidewaysfigure environment?

Here is my code:

\documentclass{article}
\usepackage{graphicx}
\usepackage[demo]{rotating}
%\usepackage[figuresleft]{rotating}
\begin{document}
\begin{sidewaysfigure}
    \centering
        \includegraphics[scale=0.6]{example-image-a}
    \caption{text here}
    \label{fig:mine}
\end{sidewaysfigure}
\end{document}

Best Answer

To have the bottom edge of the figures be placed on the left, load the rotating package with the option figuresleft. By the way, this option affects the orientation of sidewaysfigures and sidewaystables, not just of sidewaysfigures.

Incidentally, since the rotating package loads the graphicx package automatically, there's no need to load graphicx separately.


Addendum: If you want the orientation of the sidewaysfigure and sidewaystable environments to alternate between odd-numbered and even-numbered pages, do not specify either figuresleft or figuresright. Instead, use the document class option twoside -- or use a document class, such as book, that invokes the twoside option by default. That said, I suspect that your readers might strongly dislike having to crane their necks first to one side and then to the other to take in your figures. Better to stick with a single orientation...

Related Question