I am trying to write a thesis and would like to number the subsubsection titles within a section easily so I can refer to them nicely and easily later on in the document.
Here is what I have at the moment:
\documentclass[10pt]{article}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\usepackage{fancyhdr, graphicx}
\usepackage[width=5.5in, height=8in]{geometry}
\begin{document}
\section{Exact Solutions of the Navier-Stokes Equations}
Intro.
\subsubsection{Solution 1: Description}
Solution 1
\subsubsection{Solution 2: Description}
Solution 2
\subsubsection{Solution 3: Description}
Solution 3
\end{document}
and the output comes out as:
1.0.1 Solution 1: Description
Solution 1
1.0.2 Solution 2: Description
Solution 2
but what I'd like is to have it appear as:
Solution 1: Description
Solution 1
Solution 2: Description
Solution 2
such that the part "Solution i" becomes the number - if that makes sense.
The reason I want to do this is so that: 1 - it looks nice, and 2 - so that I can use a \label and \ref later on so I can refer back to them later on in the document.

subsectionlevel --this is not recommended – Apr 22 '16 at 09:50