在 LaTex 中可以水平显示 } 吗?

在 LaTex 中可以水平显示 } 吗?

在 LaTex 中可以水平显示 } 吗?

我可以写:

({u_1}{e_1} + {u_2}{e_2}

但是如何将其}水平放置呢?

在此处输入图片描述

谢谢。

答案1

\underbrace在内联数学和显示数学环境中的工作方式相同。但是,在这两种情况下,您都应该正确地编写数学表达式(您在评论中没有这样做)

\documentclass{article} 

\begin{document} 

$\underbrace{(u_1 e_1 + u_2 e_2)}_{\textrm{Scalar $C_{ue}$}}$ 

\begin{equation} 
\underbrace{(u_1e_1 + u_2e_2)}_{\textrm{Scalar $C_{ue}$}} 
\end{equation}

\end{document}

在此处输入图片描述

答案2

感谢猫@SchrodingersCat 的 tikz

在此处输入图片描述

\documentclass{article} 
\usepackage{tikz} 
\usetikzlibrary{decorations.pathreplacing,calligraphy} 
\begin{document} 
\begin{center} 
\begin{tikzpicture}[x=2cm] 
 \draw (-1,0) -- (4,0); 
 \path foreach \X/\Y/\Z  in  
  {0/a_0/a_1, pi/b_0/, {pi/2}/b_1/b_2,{pi/4}/a_2/a_2} 
     { (\X,0) node[circle,fill,inner sep=0.5mm, 
        label=above:{$\Y$},label=below:{$\Z$},alias=\Z] (\Y) {}}; 
 \begin{scope}[thick,decoration={calligraphic brace, amplitude=6pt}] 
  \draw[decorate]   (current bounding box.north) coordinate (aux) 
    (a_2|-aux) -- node[above=1ex]{$I_2$} (b_1|-aux); 
  \draw[decorate]   (current bounding box.south) coordinate (aux) 
    (b_1|-aux) -- node[below=1ex]{$I_1$} (a_0|-aux); 
  \draw[decorate]   (current bounding box.south) coordinate (aux) 
    (b_0|-aux) -- node[below=1ex]{$I_0$} (a_0|-aux); 
 \end{scope}  
\end{tikzpicture} 
\end{center} 
\end{document}

相关内容