Could someone please give me step by step instructions on how to input a jpeg file into a
\documentclass[12pt]{article}
?Thanks,
Peaches

\documentclass[12pt]{article}
?Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\begin{figure}
\begin{center}
\includegraphics[width=\linewidth]{mypicture.jpg}
\end{center}
\caption{my comments.}
\label{referenceForText}
\end{figure}
Code: Select all
\begin{figure}[ht]% more options to ease placement - maximum: !htbp
\centering% since \begin{center} ... \end{center} causes additional vertical space
\includegraphics[width=\linewidth]{mypicture}% .jpg is not necessary
\caption{my comments}
\label{referenceForText}
\end{figure}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis