jou class apa6 - 表格问题

jou class apa6 - 表格问题

我正在运行 apa6 中提供的简短示例。[man] 和 [doc] 类文档模式工作正常。但 [jou] 类报告问题(如下)。我试图隔离问题。问题出在表格上。删除表格可以消除问题。我正在使用 MiKTeX 2.9 和 TeXStudio。有什么建议可以解决,以便在 jou 类中生成表格?

我正在尝试排版以下来自 apa6 的简短示例:

\documentclass[jou]{apa6} 
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{bibliography.bib}
\title{Sample APA-Style Document Using the \textsf{apa6} Package}
\shorttitle{test}
\author{Brian D. Beitzel}
\affiliation{SUNY Oneonta} 
\leftheader{Beitzel}

\begin{document}
\maketitle
We begin with \textcite{Shotton1989}.  We can also cite this work in
parenthesis, like this: \parencite{Shotton1989}. 
....
\section{Results}
Table \ref{tab:ComplexTable} contains some sample data.  Our
statistical prowess in analyzing these data is unmatched. 
\begin{table}[htbp]
\vspace*{2em}
  \begin{threeparttable}
\caption{A Complex Table} 
\label{tab:ComplexTable}
 \begin{tabular}{@{}lrrr@{}}         \toprule<br/> 
 Distribution type  & \multicolumn{2}{l}{Percentage of} & Total number \\   
                   & \multicolumn{2}{l}{targets with}  & of trials per  \\   
                   & \multicolumn{2}{l}{segment in}    & participant    \\ 
\cmidrule(r){2-3}   
                                    &  Onset  &  Coda            &       \\   \midrule   
    Categorical -- onset\tabfnm{a}  &    100  &     0            &  196     \\   
    Probabilistic                   &     80  &    20\tabfnm{*}  &  200     \\   
    Categorical -- coda\tabfnm{b}   &      0  &   100\tabfnm{*}  &  196     \\       \midrule  
    \end{tabular}   
    \begin{tablenotes}[para,flushleft]  
        {\small  
            \textit{Note.} All data are approximate.   
            \tabfnt{a}Categorical may be onset.   
            \tabfnt{b}Categorical may also be coda.  
            \tabfnt{*}\textit{p} < .05.  
            \tabfnt{**}\textit{p} < .01.  
         }  
    \end{tablenotes}  
  \end{threeparttable}
\end{table} 
\section{Discussion} 
This is a lengthy and erudite discussion.  It demonstrates amazing
skill in interpreting the results for the masses.
\printbibliography
\end{document}

但是当我用 LaTeX 编译它时,我收到以下错误消息:

Trying to make PK font rtxr at 540 DPI...  
Running miktex-makemf.exe... miktex-makemf: The rtxr source file could not be found.       
Running ttf2pk.exe...  
miktex-makepk: PK font rtxr could not be created.  
Process exited with error(s)  

相关内容