如何改变 ifthen 以允许包或文档内的更改?

如何改变 ifthen 以允许包或文档内的更改?

我正在尝试更改论文中表格的字体大小。我使用的是网上找到的模板定理。样式文件有一个\ifthen我不理解的设置。似乎如果strict满足命令(默认),则无法在表格内更改字体大小。我可以使用什么命令在一个表格内更改它?像\ifrelaxed和这样的命令\strictfalse不起作用。

\documentclass[11pt,a4paper]{book}
\usepackage{quthesis}
\usepackage{subfiles}
\begin{document}
    \subfile{1_Intro}
\end{document}


% ----------------------------------------------------------------------------
% Chapter 1 - Introduction
% ----------------------------------------------------------------------------
\documentclass[thesis_small.tex]{subfiles}
\begin{document}

    Text that can stay as is.

\begin{table} 
    %   \strictfalse ?? something here
    \caption{Caption.}  \label{Parameters}
    \scriptsize     
    \begin{tabular}{ | p{2.3cm} |} 
        \hline
        { This font needs to be small}
                \end{tabular}
\end{table}
\end{document}

相关内容