Hi Natalie,
with the
table
environment in a
moderncv
document, you would get the error:
Code: Select all
LaTeX Error: Environment table undefined.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.61 \begin{table}
It's not supported. But you don't really need floating (!) tables with labels for cross-referencing and such. A normal
tabular
environment should do, if you don't need floating.
Still, a caption could be added by using
\captionof{table}{text}
if you load the
caption package or the small
capt-of package. You may enclose table and caption in a
minipage
environment or a
\parbox
with
\centering
.
Stefan