作者Marsden (马士登)
看板LaTeX
标题Re: [问题] array in itemize
时间Sat Mar 4 15:47:33 2017
如果没有理解错你的意思,应该是:
- 要 item 项用 Condition <num>.,後面要放置数学式
- 希望排列方式是能够最上行对齐 item label
- 能够 reference 到各个 item,而不是 item 内的式子
我推文的意思是不需要使用到 array, 直接利用 \\ 或 parbox
先放个结果图:
http://i.imgur.com/nQxWLV9.png
以下是我使用的代码:
----------------------------------------------------------------------
\usepackage{enumitem} % 用来给 enumerate 环境自订标号样式
Item Test
\begin{enumerate}[leftmargin=*,
label=\bf{Condition. \arabic*}]
\item \label{test01} $x_1=0$ \\ $x_2=0$ \\ $x_3=0$
\item \label{test02} $y_1=0$ \\ $y_2=0$ \\ $y_3=0$
\end{enumerate}
Just Test: Reference to \ref{test01}
----------------------------------------------------------------------
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 140.112.35.93
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/LaTeX/M.1488613656.A.B0F.html
1F:→ Marsden: 其实 enumerate package 也能自订标号 03/04 19:06
2F:→ Marsden: 但 \ref 的显示方式就不一样惹, 你可以自己试试~ 03/04 19:08