I am drafting an article in LaTeX, but having troubles to move tables from the text to the Appendix. I am using \appendix command, and then using standard code for creating a table. However, the table does not appear in the Appendix, rather it shows up in the main text. Please help.
\documentclass[12pt]{article}
\usepackage{appendix}
\begin{document}
\section{Introduction}
\subsection{Literature}
\appendix
\section{Appendix: Additional Figures}
\begin{table}[]
\centering
\begin{tabular}{c|c}
& \
&
\end{tabular}
\caption{Caption}
\label{tab:my_label}
\end{table}
\end{document}
