tipaman 和任务包不能一起用

tipaman 和任务包不能一起用

我想使用tipaman带有的包,tasks但它们似乎不搭配。在这种情况下,我该怎么办?因为我正在寻找各个项目的从左到右对齐。

\documentclass{article}
\usepackage{tipaman}
\usepackage{tasks}

\begin{document}
\begin{tasks}[style=enumerate](5)
\task Man   {\Huge  \textipa{/\ae/}}
\task Heart {\Huge  \textipa{/\textinvscripta :/}}
\task Box \textipa{/\textopeno/}} 
\task Luck  {\Huge \textipa{/\textturnv/} }
\task friend  {\Huge \textipa{/e/} } 
\task cat  {\Huge  \textipa{/\ae/}}  
\task admit  {\Huge \textipa{/i/} }
\task Man   {\Huge  \textipa{/\ae/}}
\task Heart {\Huge  \textipa{/\textinvscripta :/}}
\task Box \textipa{/\textopeno/}} 
\task Luck  {\Huge \textipa{/\textturnv/} }
\task friend  {\Huge \textipa{/e/} } 
\task cat  {\Huge  \textipa{/\ae/}}  
\task admit  {\Huge \textipa{/i/} }
\end{tasks}
\end{document}

它生产 在此处输入图片描述

但我希望它们看起来像

在此处输入图片描述

答案1

以下 MWE 生成类似于示例图像的列表。它从左到右编号(使用\enumerate作为任务样式)并按列对齐。请注意,环境的元素tasks用 表示\task。使用的语音字母包是tipa(基本符号)和tipx(扩展符号,在本例中\textinvscripta)。

\documentclass{article}
\usepackage{tipa}
\usepackage{tipx}
\usepackage{tasks}

\begin{document}
\begin{tasks}[style=enumerate](4)
\task Man\\{\Huge \textipa{/\ae/}}
\task Heart\\{\Huge \textipa{/\textinvscripta :/}}
\task Box\\{\Huge \textipa{/\textopeno/}} 
\task Luck\\{\Huge \textipa{/\textturnv/} }
\task friend\\{\Huge \textipa{/e/} } 
\task cat\\{\Huge \textipa{/\ae/}}  
\task admit\\{\Huge \textipa{/i/} }
\end{tasks}
\end{document}

结果:

在此处输入图片描述

相关内容