矩形框定一些关系

矩形框定一些关系

期望的框架输出

我如何才能围绕某些关系创建一个矩形框架?

答案1

我建议您将aligned环境放在指令内\boxed

在此处输入图片描述

\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'aligned' env. and '\boxed' and '\text' commands
\usepackage{newtxtext,newtxmath} % optional (Times Roman fonts)
\newcommand\R{\mathbb{R}} % handy shortcut command

\begin{document}

\[
\boxed{\begin{aligned}
\text{function $f\colon\R\to\R$}
   &\Leftrightarrow 
   \text{linear transformation $T_A\colon\R^n\to\R^m$} \\
\text{input $x\in\R$} 
   &\Leftrightarrow
   \text{input $\vec{x}\in\R^m$} \\
\cdots &\Leftrightarrow \cdots \\
\text{range of $f$}
   &\Leftrightarrow
   \text{$\mathcal{C}(A)\equiv{}$column space of $A={}$range of $T_A$}
\end{aligned}}
\]

\end{document}

相关内容