I'm relatively new to LaTeX, but I couldn't find any information regarding this specific problem (related ones here on the forum, but they didn't help me). My problem is that my figures all become right-aligned, despite having used \centering in the figure environment. Are there any specific packages I should load?
This is the beginning of the document:
Code: Select all
\documentclass[a4paper,11pt]{article}
% define the title
\author{B.~Fallqvist}
\title{Cell mechanics - A litterature study}
\usepackage{graphicx, float}
\begin{document}
% generates the title
\maketitle
% insert the table of contents
\newpage
\tableofcontents
\newpage
Typically, I write a figure as
Code: Select all
\begin{figure}[H]
\centering
\includegraphics[scale=0.5, angle=-90]{Figures/focal_adhesion}
\vspace{1.5cm}
\caption{Formation of focal adhesions \cite{geiger_09}.}
\label{focal_adhesion}
\end{figure}
Thanks
Björn