I am trying to reference figures with short path but every time I compile I get a blank space, the code I used is:
\documentclass[15pt,a4paper]{article}
\usepackage{lipsum}
\usepackage{url}
\usepackage[nochapters]{classicthesis}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{hyperref}
\usepackage{mathtools}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage[left=1.5in,right=1in,top=1in,bottom=1in]{geometry}
\graphicspath
{
{Figures/}
}
\begin{document}
\title{\rmfamily\normalfont\spacedallcaps{Title}}
\author{\spacedlowsmallcaps{Lorem Ipsum}}
\date{} % no date
\maketitle
\section*{This is a section}
This is just a \ref{fig:abcd}
\begin{figure}[h]
\begin{center}
\includegraphics[scale=1]{figure}
\caption{Lorem ipsum}
\end{center}
\label{fig:abcd}
\end{figure}
\end{document}
