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?