latex文本居中问题
想在生成的table下面加入文字:2013年5月10日,文字居中,该怎么写代码?
documentclass{article}
usepackage{amsmath,amssymb}
usepackage{latexsym}
usepackage{graphicx}
usepackage{CJK}
begin{document}
begin{CJK*}{GBK}{song}
begin{table}
centering
begin{tabular}{p{120pt}p{180pt}}
makebox[120pt][s]{LARGE姓名}&
makebox[180pt][c]{largeXXX}
cline{2-2}
makebox[120pt][s]{LARGE院系}&
makebox[180pt][c]{largeXXX}
cline{2-2}
makebox[120pt][s]{LARGE专业}&
makebox[180pt][c]{largeXXX}
cline{2-2}
makebox[120pt][s]{LARGE年级}&
makebox[180pt][c]{largeXXX}
cline{2-2}
end{tabular}
end{table}
end{CJK*}
end{document}
还有为什么新输入文字后,这个表格就不在第一页跑到第二页去了?