I want to change the font size of the new environment defined as below:
\newsavebox{\ieeealgbox}
\newenvironment{boxedalgorithmic}
{\begin{lrbox}{\ieeealgbox}
\begin{minipage}{\dimexpr\columnwidth-2\fboxsep-2\fboxrule}
\begin{algorithmic}}
{\end{algorithmic}
\end{minipage}
\end{lrbox}\noindent\fbox{\usebox{\ieeealgbox}}}
and the environment is used like below:
\begin{table}[ht]
\caption{...}
\centering
\begin{boxedalgorithmic}
...
\end{boxedalgorithmic}
\label{alg}
\end{table}
I really don't know how to change the font size of the content in the Table.
boxedalgorithmicdefinition so that another font size is applied whenever the environment is used? Or do you want to change the font size in particular uses ofboxedalgorithmic. In both cases: Have you tried just using one of the commands from one of the lists come up if you google for "LaTeX font size", such as here? – Daniel Jan 11 '12 at 08:40\normalsizein your environment definition (directly after the\begin{algorithmic}if you want the font used inside aboxedalgorithmto default to\normalsize. – Daniel Jan 11 '12 at 10:22