The error code says: "Undefined Control Sequence"
Code: Select all
\begin{center}
\includegraphics[scale=0.8]{C:\Users\User\Documents\Conic_Section.jpg}
\caption{Conic Section}
\end{center}
Code: Select all
\begin{center}
\includegraphics[scale=0.8]{C:\Users\User\Documents\Conic_Section.jpg}
\caption{Conic Section}
\end{center}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\usepackage{graphics}
and it says it is missing a "}" when before I added "\usepackage{graphics}" it was working fine.! File ended while scanning use of \Gin@iii.
\caption
inside of center. It will raise another error.Code: Select all
\documentclass{article}
\usepackage{graphicx}
\usepackage{caption} % for \captionof
% or:
% \usepackage{captionof}
% or a KOMA-Script class...
\begin{document}
\begin{center}
\includegraphics[scale=0.8]{C:/Users/User/Documents/Conic_Section.jpg}
\captionof{figure}{Conic Section}
\end{center}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.