我正在尝试在 DYI 日历中更改此代码
\newcolumntype{W}{>{\hfill\normalfont\footnotesize}p{\WkdayColWidthMonthTblYC}<{\hspace*{0.5em}}@{\extracolsep\fill}}
使列居中,但我不知道如何在不改变基本列类型(即 p)本身的情况下解决这个问题。
答案1
你可以设置
\newcolumntype{W}[1]{>{\normalfont\footnotesize\centering}p{#1}}
并调用它
W{\WkdayColWidthMonthTblYC}
在类似表格的环境中。
如果允许单词连字符,则\centering
无法完成这项工作。相反,ragged2e
也加载包并发出指令
\newcolumntype{W}[1]{>{\normalfont\footnotesize\Centering}p{#1}}
即使用\Centering
而不是\centering
。