我想使用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}
结果: