I've recently used Lyx to put together a bioRxiv preprint. I ended up using the IEEE Transactions document style and it came very close to looking the way I wanted, except for the styling of table captions. I'd like the table captions to look the same way as figure captions.
Here's my preamble:
\usepackage[numbers,sort&compress,super]{natbib}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{url}
\usepackage{amsmath}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@makecaption}
{\scshape}
{}
{}
{}
\makeatother
\renewcommand{\thetable}{\arabic{table}}
Here's what my figure captions look like:
And here's what the table captions look like:
Specific changes that these table captions need are:
- Justified instead of centered.
- Have a full stop after "Table x".
- Start right after "Table x." instead of in a new line.
How can I make this happen?
Thanks!

