包子标题错误:此包不能用于合作

包子标题错误:此包不能用于合作

我正在使用带有 overleaf 的 latex 模板撰写论文。

主 tex 文件;

\documentclass[a4paper,12pt,oneside,openany]{book}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%      THESIS PARAMETERS       %%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Language Option: "tr" or "eng"                (default: "eng")
% Degree Option: "ms" or "phd"                  (default: "ms")
% For Thesis Monitoring Committee Report: "tmc"
% Bibliography Option: "ieee" or "authoryear"   (default: "ieee")

% Example:   \usepackage[tr, phd, tmc]{ytuthesis}
%            \usepackage[eng, ms]{ytuthesis}
%            \usepackage[tr, ms, authoryear]{ytuthesis}

\usepackage[tr, phd]{ytuthesis}

\usepackage{caption}
\usepackage{subcaption}

在单独的章节 tex 文件中我想使用 subtable;

\chapter{intro}
....
....
\begin{table}
    \begin{subtable}{0.5\textwidth}
        \begin{tabular}{c|cccc}
            \toprule    
            & User-1 & User-2 & ... &User-100 \\ 
            \midrule
            Project-1& 0 & 51   & ... & 96 \\
            Project-2& 7 &  0  & ... & 0 \\
            Project-3& 0 & 0   & ... & 4 \\
            ...& ... & ...   & ...  & ... \\
            Project-n& 0 & 34  & ... & 0 \\
            \bottomrule
        \end{tabular}
        \caption{Actual values of the metric}
        \label{tab:pivottableA}
    \end{subtable}
    \hfill
    \begin{subtable}{.5\textwidth}
        \begin{tabular}{c|cccc}
            \toprule    
            & User-1 & User-2 &... &User-100 \\ 
            \midrule
            Project-1& 0 & 4   & ... & 10 \\
            Project-2& 0.08 & 0 & ... & 0 \\
            Project-3& 0 & 0   &... & 0.5 \\
            ...& ... & ...   & ... & ... \\
            Project-n& 0 & 3  &... & 0 \\
            \bottomrule
        \end{tabular}
        \caption{Normalized values of the metric}
        \label{tab:pivottableN}
    \end{subtable}
    \caption{A sample project-developer matrix belongs to the metric \textit{issue\_opened}}
    \label{tab:pivottable}
\end{table} 

它不起作用。它给出了关于兼容性的错误;

包子标题错误:此包不能用于合作

(子标题)使用 subfig 包。

在 tex 文件的相关行中,出现错误;

Latex 错误:环境子表未定义

我该如何解决?这与文档类有关吗?

所有源文件都在这里关联

日志消息在这里;

包子标题错误:此包不能用于合作

(子标题)使用 subfig 包。

请参阅 subcaption 包文档以了解解释。输入 H 可立即获得帮助。...

\subcaption@CheckCompatibility 如果您不理解此错误,请仔细查看“subcaption”包的文档,尤其是有关错误的部分。尝试输入以继续。如果不行,请输入 X 退出。

相关内容