PGFPlots:將軸線與外部刻度標籤置中

PGFPlots:將軸線與外部刻度標籤置中

我想要實現的目標:

基本上我想盡可能接近這張圖片: 空圖的圖片,軸線居中,但標籤位於外側

請注意,軸線居中,但刻度標籤位於外側(類似盒裝軸樣式)。

到目前為止我所擁有的:

\documentclass{minimal}

\usepackage{pgfplots}
\usepackage{graphicx}   % For \resizebox
\pgfplotsset{compat=newest}

\begin{document}
    \centering
    \resizebox{0.8\textwidth}{!}{%
        \begin{tikzpicture}
            \begin{axis}[
                axis lines=center,
                grid=major,
                xlabel=\(x\), xmin=-5.25, xmax=5.25,
                xtick distance=1, xtick pos=bottom,
                ymin=-5.25, ymax=5.25,
                ytick distance=1, ytick pos=left,
            ]

            \end{axis}
        \end{tikzpicture}
     } % \resizebox
\end{document}

具有中心軸線且標籤直接位於軸上的空圖的圖片

xticklabel pos=bottom正如您所看到的,刻度線本身確實按照和 的指定移動到了左側和底部yticklabel pos=left

請注意,根據PGFPlots 手冊修訂版 1.16,第 4.15.2 節(刻度對齊:位置和移位):

變更tick pos也會影響刻度標籤的位置。

然而,這裡的情況似乎並非如此。

答案1

在這裡我展示了一個可能的解決方案來實現你想要的。

您問題中引用的文字可能有點誤導,但也寫在那裡,這只會影響盒裝圖

不過,請查看程式碼中的註釋以獲取更多資訊。

% used PGFPlots v1.16
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
    \begin{axis}[
        axis lines=center,
        xmin=-5.25,
        xmax=5.25,
        ymin=-5.25,
        ymax=5.25,
        xlabel=$x$,
        % move the `xlabel` to the right of the arrow
        xlabel style={
            anchor=west,
        },
        xtick distance=1,
        xtick pos=bottom,
        ytick distance=1,
        ytick pos=left,
        grid=major,
        % -----------------------------
        % move ticklabels to the "outside"
        xticklabel style={
%            % hard-coded solution --> dependent of axis scaling/size
%            yshift=-82pt,
            % relative shifting --> independent of axis scaling/size
            shift={(0,0 |- {axis description cs:0,-1})}
        },
        yticklabel style={
%            % hard-coded solution --> dependent of axis scaling/size
%            xshift=-100pt,
            % relative shifting --> independent of axis scaling/size
            shift={(0,0 -| {axis description cs:-0.53,0})}
        },
        % remove the ticks themselves
        % (which are moved as well)
        tickwidth=0pt,
        % show the "0"s (zeros) again
        hide obscured x ticks=false,
        hide obscured y ticks=false,
        % -----------------------------
%        % for testing only to see, if the shifting works independent of
%        % axis scaling
%        height=10cm,
    ]

    \end{axis}
\end{tikzpicture}
\end{document}

顯示上述程式碼結果的圖像

相關內容