I have this code:
\documentclass[12pt]{article}
\begin {document}
\begin{table}[h!b!p!]
\caption{This caption describes contents of Table 1, gives the big picture.}
\caption {Describe contents of Table 1.A}
\begin{tabular}{|c|c|c|c|c|c|}
\hline
Recom Strength & Highest Idos Risk & 2nd Highest & Middle & 2nd Lowest & Lowest\\
\hline
1 & -0.41 & -0.07 & 1.27 & -0.78 & 0.73\\
\hline
2 & -0.85 & -1.88 & 0.01 & 0.75 & 2.32\\
\hline
3 & -0.48 & -1.0 & -0.56 & 0.47 & 1.01\\
\hline
4 & 0.04 & 0.76 & 1.34 & 1.78 & -1.27\\
\hline
5 & -1.35 & -1.52 & 0.04 & 1.23 & 0.51\\
\hline
\end{tabular}
\caption{Describe contents of Table 1.B}
\begin{tabular}{|c|c|c|c|c|c|}
\hline
Recom Strength & Highest Idos Risk & 2nd Highest & Middle & 2nd Lowest & Lowest\\
\hline
1 & -0.41 & -0.07 & 1.27 & -0.78 & 0.73\\
\hline
2 & -0.85 & -1.88 & 0.01 & 0.75 & 2.32\\
\hline
3 & -0.48 & -1.0 & -0.56 & 0.47 & 1.01\\
\hline
4 & 0.04 & 0.76 & 1.34 & 1.78 & -1.27\\
\hline
5 & -1.35 & -1.52 & 0.04 & 1.23 & 0.51\\
\hline
\end{tabular}
\label{Test Table}
\end{table}
\end {document}
And it produces the following output:

I would like the lines that say:
Table 2: Describe contents of Table 1.A
to say:
Table 1.A: Describe contents of Table 1.A
and similarly, I want
Table 3: Describe contents of Table 1.B
to say
Table 1.B: Describe contents of Table 1.B
Essentially, if I could get rid of Latex automatically inserting "Table 1" or "Table 2" in every caption that I create, I would solve my problem.
It would also be nice if I could have my captions for Table 1.A and Table 1.B left aligned, like caption for Table 1 is.
How can I do this?
Thank You in Advance


captionpackage gives a lot of control over caption formatting, and also a\caption*command that is not numbered. Also[h!b!p!]is the same as[!hbp!]the!applies to all the areas it does not need to be repeated. – David Carlisle Nov 10 '12 at 19:56[!hbp]I meant:-) – David Carlisle Nov 10 '12 at 20:21\captionsetup{justification=raggedright}– David Carlisle Nov 10 '12 at 20:42