I am relatively new to writing in LaTeX and I have hit a problem I am unable to solve.
When I process the following MWE with latex-dvips-ps2pdf I get a properly formatted table. However, when I use PDFLaTeX directly, the compiler hangs indefinitely.
Code: Select all
\documentclass{report}
\usepackage{ctable}
\usepackage{auto-pst-pdf}
\newcolumntype{Y}{>{\centering\arraybackslash}X}
\begin{document}
\ctable[caption = {Caption},width = 120mm,pos = h,]{YYY}{}{
\FL
Column 1 & Column 2 & Column 3 \ML
(H) & 80 & 90 \NN
(Mu) & 50 & 70 \LL
}
\end{document}
Based on reports of similar problems I have tried changing the option for PdfLaTeX in TexStudio to
pdflatex -synctex=1 --enable-write18 -interaction=nonstopmode %.tex
orpdflatex --shell-escape %.tex
I have also attached the log files after an attempted PDFLaTeX run.
Any help with this would be greatly appreciated.
Thanks,
gandym