\begin{center}
\small
\setlength\extrarowheight{0.01pt}
\captionof{table}{Nomenclature}
\renewcommand{\arraystretch}{1.3}
\setlength\doublerulesep{.1pt}
\begin{tabular}{ |p{2cm}|p{5cm}|}
\hline
\hline
\textbf{\small Symbol} & \textbf{\small Description} \\
\hline
$E_{c , TL}$& Total energy consumption in a day \\
$R_{a}$ & ----------------\\
$S_{a}$ & S--------------- \\
$E_{a}$ & -----------\\
\end{tabular}
\end{center}
我想将表格中显示的字体大小调小,但是我\small
在表格环境中使用时却无法使用。请帮帮我。
答案1
是的。\small
和之间的差异\normalfont
不是很大,所以你可能只是没有注意到。
一般而言,有两种方法可以实现(您的示例同时包含这两种方法):
- 在 之前设置字体大小(
\small
、等) ,则所有单元格都将具有此字体大小\tiny
\begin{tabular}
- 仅在单元格内使用字体大小,则只有该单元格才具有此字体大小
另请注意:如果您申请\small
整个表格,并且希望特定单元格变得更小,那么您需要在特定单元格中使用更小的字体大小(如\footnotesize
)。
请看此处的表格中不同字体大小的示例:
\documentclass{article}
\begin{document}
\normalsize
\begin{tabular}{|p{2cm}|p{6cm}|}
\hline
\textbf{Symbol} & \textbf{Description} \\
\hline
$E_{c , TL}$& Total energy consumption in a day \\
\hline
\end{tabular}
\small
\begin{tabular}{|p{2cm}|p{6cm}|}
\hline
\textbf{Symbol} & \textbf{Description} \\
\hline
$E_{c , TL}$& Total energy consumption in a day \\
\hline
\end{tabular}
\footnotesize
\begin{tabular}{|p{2cm}|p{6cm}|}
\hline
\textbf{Symbol} & \textbf{Description} \\
\hline
$E_{c , TL}$& Total energy consumption in a day \\
\hline
\end{tabular}
\scriptsize
\begin{tabular}{|p{2cm}|p{6cm}|}
\hline
\textbf{Symbol} & \textbf{Description} \\
\hline
$E_{c , TL}$& Total energy consumption in a day \\
\hline
\end{tabular}
\tiny
\begin{tabular}{|p{2cm}|p{6cm}|}
\hline
\textbf{Symbol} & \textbf{Description} \\
\hline
$E_{c , TL}$& Total energy consumption in a day \\
\hline
\end{tabular}
\end{document}
答案2
尝试将其置于环境\small
之外table
。
\begin{document}
\small
\begin{center}
\setlength\extrarowheight{0.01pt}
\captionof{table}{Nomenclature}
\renewcommand{\arraystretch}{1.3}
\setlength\doublerulesep{.1pt}
\begin{tabular}{ |p{2cm}|p{5cm}|}
\hline
\hline
\textbf{ Symbol} & \textbf{ Description} \\
\hline
$E_{c , TL}$& Total energy consumption in a day \\
$R_{a}$ & ----------------\\
$S_{a}$ & S--------------- \\
$E_{a}$ & -----------\\
\end{tabular}
\end{center}
\end{document}