PLOS journals provide the following instructions for preparing a LaTeX manuscript:
- Do NOT use any other packages than those specified in the template. If you use any other packages, your manuscript will be returned.
- Please limit the use of macros. The conversion software we use often cannot handle even "simple" macros, which then increase the chance for errors in the converted document.
The template only uses the packages: amsmath, amssymb, graphicx, cite, and color.
Here is an example of the table that I would like to include in my document:
\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{cite}
\usepackage{color}
\topmargin 0.0cm
\oddsidemargin 0.5cm
\evensidemargin 0.5cm
\textwidth 16cm
\textheight 21cm
\usepackage[labelfont=bf,labelsep=period,justification=raggedright]{caption}
\makeatletter
\makeatother
\date{}
\begin{document}
\begin{table}[!ht]
\caption{\bf{Test Table}}
\begin{tabular*}{1\linewidth}{@\extracolsep{\fill}}{rllllrrrlllll}
\hline
& Column1 & Column1 & Column1 & Column1 & Column1 & Column1 & Column1 & Column1 & Column1 & Column1 & Column1 \\
\hline
& Rowname & something & 1000000 & 200 & 3000 & 40 & 1.5 & 320000 & 5.8 & 80 & $^\ast$ \\
\hline
\end{tabular*}
\begin{flushleft}
caption text caption text
\end{flushleft}
\label{tab:priors}
\end{table}
\end{document}
I have tried to adapt the answer to a previous question along the lines of: \begin{tabular*}{.5\linewidth}{@{\extracolsep{\fill}}rllllrrrlllll}, but this does not work.


tabularxis part of the required packages of LaTeX and therefore part of LaTeX (2e that is). Apparently they don't use (La)TeX but some "conversion software" to convert it to something else. Really a shame! But all of this doesn't help you. – Martin Scharrer May 03 '11 at 22:29\bfin modern LaTeX documents. The correct macro is\textbf{...}. See Does it matter if I use \textit or \it for an explanation. Apart from this\bf{...}is wrong (if you using the default definition) and should be{\bf ...}. – Martin Scharrer May 03 '11 at 22:32