matrix with small font

4,197 views
Skip to first unread message

Ken

unread,
Mar 12, 2009, 1:52:26 AM3/12/09
to LaTeX Users Group
Probably trivial, but how does one apply a different font size to an
entire matrix, or better yet, all items within an align environment?
I know I can use \scriptstyle for each element of a matrix, but that
gets real tedius. Appreciate suggestions. Thanks.

Luis Ernesto Carrera Retana

unread,
Mar 12, 2009, 11:03:32 AM3/12/09
to latexus...@googlegroups.com
You can enclose your enviroment between:

\small % or \footnotesize or whatever you want
\begin(...)
...
\end(...)
\normalsize

Yours:
Luis Ernesto.



2009/3/11 Ken <ken....@sbcglobal.net>

Ken

unread,
Mar 13, 2009, 3:43:32 PM3/13/09
to LaTeX Users Group
Ah, I was using the wrong terminology - I'd tried \scriptstyle and
\displaystyle and they didn't work, but \small and \normalsize do.
Thanks!

Werner Grundlingh

unread,
Mar 13, 2009, 4:24:23 PM3/13/09
to LaTeX Users Group
Ken,

Like many programming languages, LaTeX also allows you to use
delimiters to group certain code fragments and define some form of
scope. In your case, the following would also work:

...
{ % or \begingroup
\small
\begin{...}
...
\end{...}
} % or \endgroup
...

The above snippet allows a temporary change to the font size (\small
in this case), without the requirement to switch back to \normalsize
once the scope of the change is finished.

Werner
Reply all
Reply to author
Forward
0 new messages