仅更改表格的字体大小

仅更改表格的字体大小

我想知道如何仅更改表格中的单词、符号等的字体大小并保持文本大小不变。

\begin{landscape}
 \fontsize{8pt}{12pt}\selectfont
\footnotesize
\begin{table}[h]
\centering
\begin{tabular}{p{1cm}p{1cm}p{2cm}p{2cm}p{1cm}p{2cm}p{2cm}p{2cm}p{2cm}p{1cm}p{1cm}p{1cm}p{1cm}p{1cm}}
\hline
Case & R.T.\footnote{Rock Type} & R.M. \footnote{Rock Mineralogy}& OABN \footnote{Oil Acid/Base Number} & Aging (days) & I.S (ppm)\footnote{Ionic Strength} & ObP(psi) \footnote{Overburden Pressure} & $\Delta p (psi)$  \footnote{Pressure drop} & I.B.C\footnote{Injected Brine composition} & P.B.C\footnote{Produced Brine composition} & pH & T(${^\circ}$C) \footnote{Temperature} & R.F.(\%) \footnote{Recovery Factor}& Re.\footnote{Reference}\\
\hline \hline 
1 & S \footnote{Sandstone} & 30000 & 23 & 100 & 2 \\
\hline
\end{tabular}
\caption{Core flooding results}
\label{tab:4.1}
\end{table}
\end{landscape}

答案1

让我将我的评论扩展为答案......从以下示例中可以清楚地看到,表格内部声明的字体大小(并且仅在那些表格中)比文档中的其他文本小:

\documentclass[12pt]{article} 
\usepackage{lipsum} 

\begin{document} 
\lipsum*[2] 
    \begin{table}[ht] 
    \centering 
    \footnotesize % this font size is valid only inside table environment
\begin{tabular}{cc} 
    \hline 
11111111111 & 2222222222 \\ 
11111111111 & 2222222222 \\
11111111111 & 2222222222 \\
11111111111 & 2222222222 \\
    \hline
\end{tabular}
    \end{table} 
\lipsum*[3] 
\end{document}

在此处输入图片描述

相关内容