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}
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
\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}
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