Graphics, Figures & Tables ⇒ Problem with pictures
-
- Posts: 2
- Joined: Thu May 14, 2009 1:35 pm
Problem with pictures
First off, I'd like to thank you for taking the time to read this far. I'm new to LaTex, so please realize that I'm not too keen on the lingo. I'm writing my thesis, and I'm having problems. I can type all day long in LaTex, but when I try to insert a picture...it gives me a fit. For example, I've been playing with this for about 5 hours now. Here are what I'm using (I don't know the proper name for this, maybe packages?):
\usepackage{fullpage,epsfig,amsmath,amssymb,amsthm,cancel,bm,floatflt}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{array}
\usepackage{pstricks,pstricks-add,pst-math,pst-xkey}
\usepackage{multirow}
\usepackage{float}
Everytime I try to insert a picture, the picture is displayed on it's own page. I've tried every combination available. I've used Jpegs, eps, bitmaps...png...you name it, I've tried the format. Also, I've tried different stuff like...h...h!...tpb...etc. I'm using TeXnicCenter on a university computer. Also, please note...I have tried Tex -> DVI, Tex -> PS...etc, I've tried them all.
Does anyone have any idea, how I can fix this problem? Attached is a picture I'm trying to attach.
CURRENT CODE USED:
\begin{figure}[H!]
\centering
\includegraphics{C:/Users/labuser/Desktop/kernal.png}
\label{fig:kernal}
\end{figure}
Thank You again for your help,
Rick
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
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Problem with pictures
welcome to the board!
Perhaps the picture is just too big. Try
Code: Select all
\includegraphics[width=...,height=...]{...}
Stefan
-
- Posts: 2
- Joined: Thu May 14, 2009 1:35 pm
Re: Problem with pictures
Rick