[Tex/LaTex] Section/chapter title in landscape mode

landscapesectioning

How could I write the title of a section or of a chapter in landscape mode?

I mean without rotating the document. What I need to have, to explain me better, is this:

enter image description here

Do't mind about the plot, I already created a page with the landscape mode for the plot and it's awesome.

What I miss is the "title of this section" in landscape mode, above the plot.

Thank you!!

I already inserted the plot with the cose

\begin{sidewaysfigure}[ht]
\centering
\includegraphics[scale=2.5]{E1-ExpLog-LogLogPlot.eps}
\end{sidewaysfigure}

What I need is the title in section mode above the plot, in landscape mode.

Let's pretend I have to write "TITILE OF THE PLOT" as I wrote in the paper.

Best Answer

Is it something like this you want?

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{graphicx, rotating, caption, lscape, threeparttable}% \usepackage{amsmath}

 \begin{document}

\begin{landscape} \section{About Piero di Cosimo}
 \vfill
 \begin{measuredfigure}
\includegraphics[height=10cm]{SanRomano}
        %
\caption{The Battle of San Romano}
    \end{measuredfigure}
\vfill
 \end{landscape}

\end{document} 

enter image description here

Related Question