latexhelp1 wrote:I'm sorry, but I cannot figure out how to insert an .eps figure here instead of just the black box. I used to use includegraphics, but I cannot figure out how to make that compatible with the code you have written in place of the black box.
I suspect that \rule{\linewidth}{0.75\linewidth} is making the black box in the code below. […]
I wish you would be a little bit more proactive and just think one simple step further. You could have tested it by yourself by just commenting the
\rule command or replacing it with the
\includegraphics command. The below code works as you want. No modifications needed.
Code: Select all
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[margin=1in]{geometry}
\usepackage[font=large,labelfont=bf,tableposition=top]{caption}
\usepackage{graphicx}
\usepackage{rotating}
\usepackage{varwidth}
\begin{document}
\begin{sidewaysfigure}
\centering
\begin{varwidth}{5.75in}
\includegraphics[width=5.75in,height=3.75in]{Figure1}
\smallskip
\footnotesize
Notes: The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
\medskip
Source: The quick brown fox jumps over the lazy dog.
\end{varwidth}
\caption{Figure Caption}\label{fig:dummy}
\end{sidewaysfigure}
\end{document}
And stop with your weird manual formatting of the caption. It's all done by the
caption package which you are already loading with appropriate options. If the formatting as above is not what you want, read the package manual to learn more about its capabilities.
I only wonder why you want this figure to be rotated. You've got a text width of 6.5" and a figure width of 5.75". So I see no need to turn it. It would fit nicely.