pgfplot x 轴刻度与下方矩阵对齐 |

pgfplot x 轴刻度与下方矩阵对齐 |

我怎样才能使用 latex 中的 pgfplots 制作如图所示的内容。在此处输入图片描述

我希望 x 轴刻度标记与其他文本对齐,如图所示。

答案1

我有点实现了它

\begin{axis}[
 xticklabels={
    $0$\\\textcolor{blue}{\boxed{u_0}},
    $1$\\$h_1u_0$\\\textcolor{blue}{\boxed{u_1}},
    $2$\\$h_2u_0$\\$h_1u_1$\\\textcolor{blue}{\boxed{u_2}},
    $3$\\$h_3u_0$\\$h_2u_1$\\$h_1u_2$\\\textcolor{blue}{\boxed{u_3}},
    $4$\\$h_4u_0$\\$h_3u_1$\\$h_2u_2$\\$h_1u_3$\\\textcolor{blue}{\boxed{u_4}},
    $5$\\$h_5u_0$\\$h_4u_1$\\$h_3u_2$\\$h_2u_3$\\$h_1u_4$\\\textcolor{blue}{\boxed{u_5}},
    $6$\\$h_6u_0$\\$h_5u_1$\\$h_4u_2$\\$h_3u_3$\\$h_2u_4$\\$h_1u_5$\\\textcolor{blue}{$\ddots$},
    $7$\\$h_7u_0$\\$h_6u_1$\\$h_5u_2$\\$h_4u_3$\\$h_3u_4$\\$h_2u_5$\\$\vdots$,
    $8$\\$h_8u_0$\\$h_7u_1$\\$h_6u_2$\\$h_5u_3$\\$h_4u_4$\\$h_3u_5$\\$\vdots$,
    $9$\\$h_9u_0$\\$h_8u_1$\\$h_7u_2$\\$h_6u_3$\\$h_5u_4$\\$h_4u_5$\\$\vdots$,    
    ~~~$\cdots~k $\\$\dots$\\$\dots$\\$\dots$\\$\dots$\\$\dots$\\$\dots$\\\textcolor{blue}{$\vdots$},
    },
    xticklabel style   = {align=center},
    axis lines=left,
]

%plots

\end{axis}

相关内容