用条形图分隔矩阵中的列

用条形图分隔矩阵中的列

我想在我的文档中创建类似的东西。到目前为止,我尝试过使用 nicematrix,但无法让它工作。提前致谢 :) 在此处输入图片描述

答案1

无需任何包装(嗯,除了黑板粗体)

\documentclass{article}

\usepackage{amsfonts}

\begin{document}

\[
P = \left\{
h \colon D(h) \subset E \to \mathbb{R} \;
\middle|
\begin{tabular}{ @{\;} l @{\;} }
$D(h)$ is a linear subspace of $E$ \\
$h$ is linear, $G\subset D(h)$ \\
$h$ extends $g$, and $h(x)\leq p(x)$ $\forall x \in D(h)$
\end{tabular}
\right\}
\]

\end{document}

在此处输入图片描述

答案2

您可以nicematrix使用两个单细胞块来完成此操作。

在此处输入图片描述

如果要增加右侧文本的垂直间距,可以在代码[<length>]后添加。例如: 。\\h\textup{ is linear}, G\subset D(h),\\[1ex]

\documentclass{article}

\usepackage{nicematrix, amsfonts}

\begin{document}

\[
P=\begin{BNiceArray}{c|l}
\Block{1-1}{h\colon D(h)\subset E\to\mathbb{R}}&
\Block[l]{1-1}{D(h)\textup{ is a linear subspace of }E,\\
    h\textup{ is linear}, G\subset D(h),\\
    h\textup{ extends }g,\textup{ and }h(x)\leq p(x)\quad\forall x\in D(h)}
\end{BNiceArray}.
\]

\end{document}

答案3

array以下是仅使用、amsmathamsfonts来表示黑板粗体 R 的解决方案:

\documentclass{article}
\usepackage{amsfonts, amsmath}

\begin{document}
\[
P = \left\{
\begin{array}{c|l}
                                 & D(h) \text{ is a linear subspace of }E,\\
h: D(h) \subset E \to \mathbb{R} & h \text{ is linear, } G \subset D(h),\\
                                 &h \text{ extends }g, \text{ and } h(x) \le p(x) \; \forall x \in D(h)
\end{array}
\right\}
\]
\end{document}

使用 quicklatex.com 制作的 LaTeX 代码渲染图

相关内容