Inserting an image using Tex Maker. I'm pretty new to LaTex but I'm using it to write my thesis. I'm trying to insert an image, and have tried numerous different inputs but none seem to work. I am using the ams package, but not sure if I need a different one to include graphics? Any help would be great! Thanks :)
It's hard to see the problem you are having, because i can't see you code Here is a example code that includes a image (note that for this code to work you will need to have an image called OWL in the same folder as the tex files) ``` \documentclass[a4paper,12pt]{article} \usepackage{amsmath} \usepackage[english]{babel} \usepackage{graphicx} \begin{document} \begin{align*} x+y &=w \\ x &=w-y \end{align*} \begin{figure}[h] \centering \includegraphics[width=0.6\textwidth]{OWL} \caption{A picture of an owly.} \end{figure} \end{document} ```
Join our real-time social learning platform and learn together with your friends!