Please draft up a 250px by 320px .png of your own as that is the same dimenion as our images. Anyhow... the image should dominate the right, forcing a couple of the lines on the left to wrap to a new line. However, whenever I try, I see the two overlapping in contrast to ALL documentation out there I can find on the topic of either wrapfigure OR wraptable says should be happening.
Having to deal with these things so infrequently, I'm not particularly conversant in LaTeX, so I really don't know what I'm doing wrong, much less how to fix it.
Thanks
...
Code: Select all
\documentclass[11pt]{letter}
\usepackage{vmargin}
\usepackage{wrapfig}
\usepackage[pdftex]{graphicx}
\DeclareGraphicsExtensions{.png}
\begin{document}
\setmargnohfrb{1in}{1in}{1in}{.9in}
\begin{letter}
\begin{wrapfigure}{r}{0.6\textwidth}
\begin{center}
\includegraphics[width=0.58\textwidth]{250x320.png}
\end{center}
\end{wrapfigure}
\LARGE
{\bfseries
TO:}
{\mdseries
Mister So and So and So}
{\bigskip\bfseries
FROM:}
{\mdseries
Mr. So and So}
{\mdseries
38 Example Rd.}
{\mdseries
Example, MA 01000}
{\bfseries
\textmd{(111) 111 - 1111}}
{\bigskip\bfseries
DATE:}
{\mdseries
August 5, 2009}
{\bigskip\bfseries
RE:}
{\mdseries
Your Example of Example Examples}
{\bigskip\bigskip\bigskip\bigskip\bigskip\LARGE\bfseries
Comments:}
{\mdseries\fontfamily{augie}\selectfont
Here is a bunch of text and a bunch of text and a bunch of text and a bunch of text and a bunch of text and a bunch of text and a bunch of text and a bunch of text and a bunch of text and an example too.}
\end{letter}
\end{document}
\bye