I find the best way to marshal tar options is to remember that 'f' indicates which tar file you want to use, and putting that as the last option immediately before the filename. So
tar -cvf a.tar
to create and
tar -xvf a.tar
to extract.
And similarly
tar -tf a.tar
to list.