我怎样才能在 Latex 中做到这一点

我怎样才能在 Latex 中做到这一点

我正在尝试使用 TiZ包,但是问题和我需要的不完全一样如下图 在此处输入图片描述

答案1

在这里我给出了我对这个图表的看法。

使用TiKz,您可以接下来阅读代码。

\documentclass[11pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
    \node at (0,7) {\(\lbrace x_1,x_2,x_3,x_4,x_5\rbrace\)};
    \node[right] at (0,4) {\(\lbrace x_1, x_2, x_3, x_4, x_5\rbrace\)};
    \node at (0.5,1) {\(\lbrace x_1, x_2, x_3, x_4, x_5\rbrace\)};
    \node[right] at (0.5,5.5) {\(f(x_4)\)};
    \draw[-latex] (0.5,6.75) -- (0.5,4.25);
    \node[right] at (1,2.5) {\(f(x_2)\)};
    \draw[-latex] (1,3.75) -- (1,1.25);
\end{tikzpicture}
\end{document}

上述代码生成的正是您所要求的结果。

相关内容