I want to include a graphics called quadratic.pdf in my LaTeX document, which only contains the image show below.
While compiling, I get the following errors:
Line 1: Fatal Error No output file produced
Line 5: !LaTeX error. File: 'quadratic.pdf.sty' not found.
Where am I going wrong?

\documentclass[oneside]{book}
\usepackage{graphicx}
\usepackage{quadratic.pdf}
\begin{document}
\chapter*{Basic Graphics}
\begin{figure}[h]
\centering
\includegraphics[width=0.5\linewidth]{quadratic}
\caption{The graphics file named \texttt{quadratic}.}
\end{figure}
\end{document}
\usepackage{quadratic.pdf}(\usepackageis a macro for loading LaTeX packages, not for inserting images) and make surequadratic.pdfis the same folder as yourtexfile. – jub0bs Feb 21 '14 at 11:38./graphics/) of the folder containing yourtexfile. Look up\graphicspathfor that. – jub0bs Feb 21 '14 at 11:46