simauth
that I need for my article to be published in Statistics in Medicine. There are few items I need help with: 1) Table formatting. I am trying to use this code for formatting table using "table" package according to journal standards:
Code: Select all
\begin{table}[ht]
\begin{center}
\begin{tabular}[b]{|cccccc|}\hline%\hline
\rowcolor{lightgray}\multicolumn{6}{|c|}{\textbf{ Table Number} Table Title}\\
col1 & col2 & col3 & col4 & col5 & col6 \\\hline
...
\end{tabular}
\end{center}\end{table}
2) Figures: I have figures in eps format that is also giving my complilation issues when using "graphicx, psfrag, espf" packages. Here's the code I am using:
Code: Select all
\begin{figure}[ht]
\begin{center}
\includegraphics[scale=0.8]{figurename}
\label{figurelabel}
\setlength{\abovecaptionskip}{15pt plus 3pt minus 2pt}
\caption{Figure Title}
\end{center}
\end{figure}
Thank you!