Cross posted on TeX: Why are my images not shown where I've inserted them in my .tex file?

This is my document

\documentclass[letterpaper]{article}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{times}
\usepackage{helvet}
\usepackage{courier}
\title{This is my title}
\author{elcodedocle}
\setcounter{secnumdepth}{0}

\begin{document}
\setlength{\parskip}{10pt}
\maketitle
\section{This is my section}

This is my paragraph.

\begin{figure}[h!]
    \centering
        \includegraphics[width=0.50\textwidth]{thisismyimage.jpeg}
    \label{fig:Fig 1}
    \caption{This is my image.}
\end{figure}

This is another paragraph.

\begin{figure}[h!]
    \centering
        \includegraphics[width=0.50\textwidth]{thisisanotherimage.jpeg}
    \label{fig:Fig 1}
    \caption{This is another image.}
\end{figure}

...

Can you tell me why it doesn't show right after adding \setlength{\parskip}{10pt} line?

link|improve this question

1  
You might want to post this to tex.stackexchange.com instead. – Riccardo Murri Jan 31 at 10:21
Also, could you be more specific about what is wrong with the file? It compiles correctly in my LaTeX, and shows the two pictures centered, and interleaved with the paragraph text... If this is not what you wanted, can you be more specific about the effect you needed? – Riccardo Murri Jan 31 at 10:23
1  
Yes: my problem is I have 6 paragraphs like this with images in between and the images show in the next page instead of between paragraphs. I also posted in latex stackexchange like you suggested. Thanks. – elcodedocle Jan 31 at 10:24
Well, the problem was the specified size for the images was larger than the page's width (which didn't show as a warning but did show as a bad box when rendering the document), so appart from automatically shrinking them, latex messed with their positions. – elcodedocle Feb 6 at 11:31
feedback

closed as off topic by Bill the Lizard Jan 31 at 13:02

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

Browse other questions tagged or ask your own question.