General ⇒ Problem with footnotesize
-
- Posts: 4
- Joined: Wed Jun 10, 2009 5:44 pm
Re: Problem with footnotesize
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Problem with footnotesize
You can switch to this size inside a table environment.xiaojunshan wrote:Can footnotesize be applied to a number of lines within a table? thx!
Code: Select all
\begin{table}[!ht]
\caption{A table in footnote size}\label{tab:fns}
\centering
\footnotesize
\begin{tabular}{ccc}
% table contents
\end{tabular}
\end{table}
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 4
- Joined: Wed Jun 10, 2009 5:44 pm
Re: Problem with footnotesize
My question is whether can I footnotesize several lines (1-4)within a tableau.
Following is my code. But it did not work
\begin{table}[!htp]
\centering
{\small\begin{tabular*}{1\textwidth}{lcp{1.9in}} \hline \hline
\Conditions & do this & do that \\ \hline
{\footnotesize
1. $w\ge a, d\ge c, a\ge c, $ & do this & $ do that\\
2. $w\ge a, d\ge c, a\ge c, $ & do this & $ do that\\
3. $w\ge a, d\ge c, a\ge c, $ & do this & $ do that\\
4. $w\ge a, d\ge c, a\ge c, $ & do this & $ do that}
\end{tabular*}}
\end{table}
