Recently, I started using Latex to create technical documentation.
I came across a problem which I can not in any way deal with.
I spent a lot of time searching for a solution but have not found effective.
The document that I am trying to create contain a lot of pictures.
At the time, when I try to insert more than one picture in a row in one section, subsection or paragraph they appear completely not where they should be.
An attempt to insert pictures to the listends exactly the same.
Only the first image appears, next appear in different positions later in this document.
Output format is PDF.
I'm using MiKTeX system with Texmaker.
The header of my document looks like this:
Code: Select all
\documentclass[12pt, a4paper,titlepage] {article}
\usepackage [english] {babel}
\usepackage[utf8] {inputenc}
\usepackage{times}
\usepackage{indentfirst}
%\frenchspacing
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage[margin=3cm]{geometry}
\usepackage{titlepic}
\usepackage{lastpage}
\usepackage[bookmarks=true,pdfborder={0 0 0}]{hyperref}
%\usepackage{makeidx}
\usepackage{enumerate}
Code: Select all
\begin{document}
\begin{enumerate}
\item First, you should open a locker, which should be adjusted. Then, using a standard ring wrench 13mm, you should unscrew head nuts from the top
and bottom of hinges (see photos below).
\begin{figure}[h]
\begin{center}
\includegraphics[width=8cm] {images/Figure32.JPG}
\caption{Readjusting the lockers I.}
\label{rys:readjust_lockersI}
\end{center}
\end{figure}
\item Then you should put a standard ring wrench 13mm and thin ring wrench 13mm into top hinge (like on the below photo). Then, using these
wrenches, you should loosen the top hinge.
\begin{figure}[h]
\begin{center}
\includegraphics[width=8cm] {images/Figure33.JPG}
\caption{Readjusting the lockers II.}
\label{rys:readjust_lockersII}
\end{center}
\end{figure}
\item Next, you should put a standard ring wrench 13mm and thin ring wrench 13mm into bottom hinge (like on the below photos). Then, using these
wrenches, you should loosen the bottom hinge.
\begin{figure}[h]
\begin{center}
\includegraphics[width=8cm] {images/Figure34.JPG}
\caption{Readjusting the lockers III.}
\label{rys:readjust_lockersIII}
\end{center}
\end{figure}
\item Next, you should readjust door - raise or leave.
\begin{figure}[h]
\begin{center}
\includegraphics[width=8cm] {images/Figure35.JPG}
\caption{Readjusting the lockers IV.}
\label{rys:readjust_lockersIV}
\end{center}
\end{figure}
\item Then, using a ring wrenches, you should tighten the top and the bottom hinges.
\item You should repeat steps b-e until adjustment the door.
\item At the end, you should screw on head nuts (into the top and the bottom hinges).
\end{enumerate}
\end{document}
In the picture you can see the resulting effect:
Please, help me
