2

Is there a cases package that lets me label my cases as I want? The cases and subcases environments of the cases package either labels tags with consecutive numbers or not at all. I would like some cases labeled and some not.

kuko
  • 21

1 Answers1

3

You can use \nonumber to suppress the tag:

\documentclass{article}
\usepackage{cases}

\begin{document}

\begin{numcases}{leftside}
  case1 & explanation1 \nonumber\\
  case2 & explanation2 \\
  case3 & explanation3 \nonumber\\
  case4 & explanation4
\end{numcases}

\end{document}

enter image description here

Moriambar
  • 11,466
Gonzalo Medina
  • 505,128