Tikz/pgfplots:具有相同的轴面积大小

Tikz/pgfplots:具有相同的轴面积大小

有没有办法指定轴大小以乳胶单位表示,不是图形尺寸用于 tikz 图。我想制作一个图表,其中轴的大小相同,但由于刻度标签的大小不同,整个图形的大小可能不同。

例如做这样的事情(由 matplotlib2tikz 生成的文件)

\documentclass[twocolumn, a4paper, 10pt]{article}
\usepackage{pgfplots}
\newlength\figureheight
\newlength\figurewidth

\begin{document}
\begin{figure*}[!htb]
        \setlength\figurewidth{0.3\textwidth}
        \setlength\figureheight{1\figurewidth}
        \begin{tabular}[b]{r}
            \input{images/synth/b0_00.tex} \\
            \input{images/synth/b1_00.tex} \\
            \input{images/synth/b2_00.tex} \\
            \input{images/synth/s_00.tex} 
        \end{tabular}
\end{figure*}
\end{document}

产生这个

丑陋、不对齐的图表

但我希望左右脊柱能够对齐。

相关内容