It seems that after figures there is no vertical space whatsoever. LaTeX doesn't seem to like me adding a \\ after the figure, too.
How can I accomplish some vertical spacing after a figure?
Here's my current latex code:
\begin{figurehere}
\centering
\includegraphics[width=16cm]{abc.png}
\caption{\footnotesize{my footnote 1}}
\label{q-qg}
\end{figurehere}
\begin{figurehere}
\centering
\includegraphics[width=16cm]{def.png}
\caption{\footnotesize{my footnote 2}}
\label{q-qg}
\end{figurehere}
\noindent abcabc
This is the header of my file:
\documentclass[a4paper,10pt]{article}
\pagenumbering{arabic}
\pagestyle{headings}
\usepackage{color}
\definecolor{dkgreen}{rgb}{0,0.5,0}
\usepackage[left=2.5cm,top=2cm,right=2.5cm,bottom=3cm]{geometry}
\usepackage{listings}
\lstset{language=Java, keywordstyle=\color{blue}, commentstyle=\color{dkgreen},escapechar=|}
\usepackage{multicol,multirow,graphicx,tabularx}
\usepackage{marvosym,textcomp,cancel,gensymb,lscape}
\usepackage{hyperref}
\usepackage{pdflscape}
\usepackage{subfigure}
\usepackage{ucs} %Unicode support
\usepackage[utf8x]{inputenc} % UCS' UTF-8 driver is better than the LaTeX kernel's
\usepackage[T1]{fontenc} %The default font encoding only contains Latin characters
\usepackage{ae,aecompl} %Almost European fonts/hyphenation do a better job than Computer Modern
\usepackage{amsmath, amsthm, amssymb} %something i found for page numbering
%hack para meter imagens e tabelas em multicol
\makeatletter
\newenvironment{tablehere}
{\def\@captype{table}}
{}
\newenvironment{figurehere}
{\def\@captype{figure}}
{}
\makeatother
\newenvironment{lista}{
\begin{itemize}
\setlength{\itemsep}{2pt}
\setlength{\parskip}{0pt}
\setlength{\parsep}{0pt}}{
\end{itemize}
}
%e uns teoremazinhos$\eta$
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\title{{\bfseriesyyy}\\{\bfseries \small xxx}}
\author{\Large{xyz}\\ abcde}
\date{some date}
%costumizar captions e titulos
\renewcommand{\abstractname}{Resumo}
\renewcommand{\figurename}{Fig.}
\renewcommand{\tablename}{Tabela}
\renewcommand\refname{ReferĂȘncias}
\long\def\symbolfootnote[#1]#2{\begingroup
\def\thefootnote{\fnsymbol{footnote}}\footnote[#1]{#2}\endgroup}
\\is strictly for text lines, you can't use it without text like you can just press Enter in Word. There should be some vertical space before and afterfigures. Please add a minimal working example (MWE) that shows your exact problem. – Martin Scharrer♦ Mar 15 '12 at 10:16figurehereis not a standard environment. Normalfigureenvironments do add vertical space. – Martin Scharrer♦ Mar 15 '12 at 10:21\documentclassto\end{document}) that we could copy and paste to understand your problem. This would encourage the gurus here to help you. – Daniel Mar 15 '12 at 10:23