我定义了一个自定义命令来生成我必须为各种实验做的表格:
\newcommand{\exptable}[3]{
\begin{center}
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{ccc}
\hline
Particle & Voltage & Flow rate \\
\hline
#1&\SI{#2}{\volt}&\SI{#3}{\micro\liter\per\minute} \\
\hline
\end{tabular}
\end{center}
}
这很好用,但是表格对于不同的输入有不同的宽度。我想改变它,使它的最小宽度大于我的输入,这样它就总是有相同的宽度(例如 7cm 或我可以设置的值)。
答案1
像这样吗?
\documentclass{article}
\usepackage{array,siunitx}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcommand{\exptable}[4]{%
\begin{center}
\sisetup{per-mode=symbol}
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{@{}l*{2}{C{#4}}}
\hline
Particle & Voltage & Flow rate \\
\hline
#1&\SI{#2}{\volt}&\SI{#3}{\micro\liter\per\minute} \\
\hline
\end{tabular}
\end{center}
}
\begin{document}
\exptable{Stuff}{4.5}{1.2345}{3cm}
\end{document}