I have a LaTeX table and would like the third column to be a different font size (smaller) than the others. I’ve always done this with a special-purpose macro that takes a parameter for each column and executes a font change for one of the columns. Is there an easier way to do this?
Share
Use the package
arrayand specify the font just after the\begin{tabular}, e.g.:this makes the first column font
smalland the secondHuge.>{decl}is used beforel, r, c, p, m, orband inserts decl directly in from of each entry of the column.You can find further details of this package (e.g. the
>{decl}to put decl after each entry) here.