The solution proposed in my last reply was not ideal. So I did another one.
Code: Select all
\documentclass[fleqn]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in]{geometry}
\usepackage[demo]{graphicx}
\usepackage{amsmath}
\usepackage{xfrac}
\usepackage{siunitx}
\sisetup{%
output-decimal-marker={.},
load-configurations=abbreviations,
group-separator={,},
per-mode=fraction,
fraction-function=\sfrac
}
\usepackage{fix-cm}
\begin{document}
\begin{enumerate}
\item \raisebox{1.75ex}{\parbox[t]{2in}{\null\includegraphics[width=\linewidth]{Diagram.pdf}}}\quad
\begin{math}
\begin{aligned}[t]
v &= \dfrac{2\pi d}{T} \\
v &= \dfrac{2\pi r\cos\theta}{T} \\
v &= \dfrac{2\pi(\SI{6.37e6}{\m})\cos\SI{40.1}{\degree}}{\SI{86400}{\s}} \\
v &= \SI{354.34}{\m\per\s}
\end{aligned}
\end{math}
\end{enumerate}
\end{document}
Since included graphics are always inserted with their baseline at the bottom, you have to cheat a little bit by the
\null command, which only is defined as an empty box. Typesetting of physical units has been enhanced by the
siunitx package.
Note the »
demo« option for the
graphicx package. It has only been inserted because the graphics was not present to me. Remove it before you continue.
And by the way, it is only kind and fair to mention a
crossposting [1]. Those trying to help put a lot of effort into their answers. A short note would prevent them of double efforts and waste of time.
[1]
{TeX} SE - Weird included Graphics Output