Thanks for reading my posting.
In the MWE provided, I'd like to increase the "gray border" around the two-line table entries. The single-line entries have perfect spacing, but the two line entries, well, not so much. The characters are right against the gray border.
Code: Select all
\documentclass[12pt]{article}
\usepackage{booktabs}
\usepackage[table]{xcolor}
\usepackage{varwidth}
\usepackage[smaller,printonlyused,withpage]{acronym}
\usepackage{xfrac}
\usepackage[load-configurations=binary]{siunitx}
\newcommand{\vw}[2]{\begin{varwidth}{#1}\centering #2\end{varwidth}}
\begin{document}
\begin{table}
\newcommand{\columnwidtha}{2in}
\rowcolors{2}{gray!30}{}
\centering
\begin{tabular}{c} \toprule
{Material} \\ \midrule \addlinespace
\vw{\columnwidtha}{Aluminum} \\ \addlinespace
\vw{\columnwidtha}{\SI{63}{\percent}/\SI{37}{\percent} Sn/Pb (Solder)} \\ \addlinespace
\vw{\columnwidtha}{Silicone} \\ \addlinespace
\vw{\columnwidtha}{\ac{POM} (Delrin)} \\ \addlinespace
\vw{\columnwidtha}{Polyimde (Vespel)} \\ \addlinespace
\vw{\columnwidtha}{Water} \\ \addlinespace
\vw{\columnwidtha}{Copper} \\ \addlinespace
\vw{\columnwidtha}{\ac{PTFE} (Teflon)} \\ \addlinespace
\vw{\columnwidtha}{Borosilicate Glass (Pyrex-7070)} \\ \addlinespace
\vw{\columnwidtha}{\ac{PCTFE} (Kel-F)} \\ \addlinespace \bottomrule
\end{tabular}
\end{table}%
\begin{acronym}
\acro{PCTFE}{Polychlorotrifluoroethelyne}
\acro{POM}{Polyoxymethelyne}
\acro{PTFE}{Polytetrafluoroethylene}
\end{acronym}
\end{document}
If anyone could suggest a solution to the above, I'd be appreciative.
The output of the above is included as an attachment in this posting for reference.
Thanks.