使用 tikz 将文本组括起来

使用 tikz 将文本组括起来

我想实现以下目标 在此处输入图片描述

我现在拥有的是 在此处输入图片描述

\documentclass[12pt]{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usepackage{makecell}%

\begin{document}
    
    \begin{tikzpicture}
        \node[] (n1) {\makecell[l]{
                weiß nicht\\
                kann nicht\\
                will nicht\\
                werde nicht\\
                Pups
        }};
        \node[right=of n1] (g1) {Gruppe 1};
        
        \node[below=of n1] (n2) {\makecell[l]{
                lang und nochmal lang\\
                viele Sachen, die auch mal viel Text bedeuten\\
                Spass
        }};
        \node[right=of n2] (g2) {Gruppe 2};
    \end{tikzpicture}
    
\end{document}

答案1

\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{positioning, decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}
\node[align=left] (n1) {
weiß nicht\\
kann nicht\\
will nicht\\
werde nicht\\
Pups
};
\node[right=of n1] (g1) {Gruppe 1};
\node[below=of n1, align=left] (n2) {
lang und nochmal lang\\
viele Sachen, die auch mal viel Text bedeuten\\
Spass
};
\node[right=of n2] (g2) {Gruppe 2};
\draw[decorate, decoration={brace, amplitude=10pt}] (n1.north east) -- (n1.south east);
\draw[decorate, decoration={brace, amplitude=10pt}] (n2.north east) -- (n2.south east);
\end{tikzpicture}
\end{document}

带括号的文本

编辑:我刚刚看到您还想要不同的对齐方式:

\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{positioning, decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}
\node[align=left] (n1) {
weiß nicht\\
kann nicht\\
will nicht\\
werde nicht\\
Pups
};
\node[right=of n1] (g1) {Gruppe 1};
\node[below=of n1.south west, anchor=north west, align=left] (n2) {
lang und nochmal lang\\
viele Sachen, die auch mal viel Text bedeuten\\
Spass
};
\node[right=of n2] (g2) {Gruppe 2};
\draw[decorate, decoration={brace, amplitude=10pt}] (n1.north east) -- (n1.south east);
\draw[decorate, decoration={brace, amplitude=10pt}] (n2.north east) -- (n2.south east);
\end{tikzpicture}
\end{document}

用括号将文本左对齐

相关内容