Se busca llave derecha escalable con guiones o puntos en modo matemático

Se busca llave derecha escalable con guiones o puntos en modo matemático

¿Cómo se puede componer una llave derecha que se escala de manera similar a la izquierda en el entorno "casos" y tiene guiones o puntos al mismo tiempo? El siguiente código está casi bien, excepto que la llave no está discontinua. En la imagen de abajo, se guiñó manualmente. El objeto matemático dentro del paréntesis escalado es una matriz de dos o tres líneas de diferente altura. (La llave derecha tikz dellave o corchete discontinuo o punteadoEs difícil obtener automáticamente el mismo tamaño que el paréntesis derecho anterior y en la misma posición vertical. Al menos no sé cómo hacer eso).

\documentclass[twocolumn,a4paper]{article}
\usepackage{mleftright,amsmath}
\begin{document}
\(\ldots\text{some consequence}\ldots\ \Leftarrow\)
{\abovedisplayskip=0ex\belowdisplayskip=0ex%
\begin{equation}\label{A}
\mleft.\mleft(
\begin{array}{c}
\text{some condition in the 1st line}\\
\text{another condition in the 2nd line}
\end{array}
\mright).\quad \mright\}
\end{equation}}\vspace{\belowdisplayskip}

Later we refer to \eqref{A}.
\end{document}

meta

Respuesta1

Puedo hacerlo de una manera ligeramente diferente. Defino \dashlbrcy \dashrbrcuso la pregunta citada del OP, y luego uso \scaleleftright{}{}{}desde mi scalerelpaquete para escalarlos al tamaño del material central.

\documentclass[twocolumn,a4paper]{article}
\usepackage{mleftright,amsmath,tikz,scalerel}
\usetikzlibrary{decorations.pathreplacing}
\def\dshlbrc{\tikz{%
  \draw [dashed, decorate, decoration={brace, amplitude=10pt}] (0,0) -- (0,2);
  }%
}
\def\dshrbrc{\tikz{%
  \draw [dashed, decorate, decoration={brace, amplitude=10pt}] (2,2) -- (2,0);
  }%
}
\begin{document}
\(\ldots\text{some consequence}\ldots\ \Leftarrow\)
{\abovedisplayskip=0ex\belowdisplayskip=0ex%
\begin{equation}\label{A}
\scaleleftright{.}{\mleft(
\begin{array}{c}
\text{some condition in the 1st line}\\
\text{another condition in the 2nd line}
\end{array}
\mright).\quad}{\dshrbrc}
\end{equation}}\vspace{\belowdisplayskip}

Later we refer to \eqref{A}.
\end{document}

ingrese la descripción de la imagen aquí

información relacionada