我正在尝试更改论文中表格的字体大小。我使用的是网上找到的模板定理。样式文件有一个\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}