\shortstack 带有空行

\shortstack 带有空行

我如何强制\shortstack保留空行?例如,

\shortstack[c]{hoge \\ foo \\ bar}
\shortstack[c]{hoge \\  \\ bar}

提供预览

。但我想保留中间的空行。

答案1

\shortstack确实不适合均匀堆叠字符,因为它只考虑字符的高度和深度,在它们之间仅添加 3pt。

查看结果

\documentclass{article}

\begin{document}

\shortstack{a\\c\\e}
\shortstack{g\\y\\q}
\shortstack{fg\\ly\\pt}
\shortstack{l\\a\\f}

\end{document}

在此处输入图片描述

结果肯定不是您所期望的。该命令仅在其参数仅由大写字母(无变音符号)组成时才有用。

\documentclass{article}

\newcommand{\bettershortstack}[2][c]{%
  \begin{tabular}[b]{@{}#1@{}}#2\end{tabular}%
}

\begin{document}

\bettershortstack{a\\c\\e}
\bettershortstack{g\\y\\q}
\bettershortstack{fg\\ly\\pt}
\bettershortstack{l\\a\\f}

\end{document}

在此处输入图片描述

现在你的例子:

\documentclass{article}

\newcommand{\bettershortstack}[2][c]{%
  \begin{tabular}[b]{@{}#1@{}}#2\end{tabular}%
}

\begin{document}

\bettershortstack{hoge \\ foo \\ bar}
\bettershortstack{hoge \\  \\ bar}

\end{document}

在此处输入图片描述

答案2

为了使内容正确排列,请使用\vphantom,因为行高是相对于条目的:

在此处输入图片描述

\documentclass{article}

\usepackage{stackengine}

\begin{document}

\shortstack[c]{hoge \\ foo \\ bar}
\shortstack[c]{hoge \\  \\ bar}
\shortstack[c]{hoge \\ \vphantom{foo} \\ bar}

\end{document}

相关内容