作者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/m.aspx?n=bbs/LaTeX/M.1488613656.A.B0F.html
1F:→ Marsden: 其實 enumerate package 也能自訂標號 03/04 19:06
2F:→ Marsden: 但 \ref 的顯示方式就不一樣惹, 你可以自己試試~ 03/04 19:08