pgfplot의 용어집이 표시되지 않습니다.

pgfplot의 용어집이 표시되지 않습니다.

현재 PGFPlot의 라벨에 용어집 항목을 사용하려고 합니다. 예 ylabel={$\gls{F}_h\ in\ \glsunit{F}}.

나는 다음과 같이 glsunit을 설정했습니다.siunitx 명령에서 용어집 항목을 사용하는 방법은 무엇입니까?. 텍스트 내부에서는 잘 작동하지만 PGFPlot에서는 작동하지 않습니다. 여기서 기호는 로만 나타납니다 ???.

추가 정보: 저는 플롯에 tikz externalize를 사용하고 있으며 기호에는 bib 파일과 bib2gls를 사용하고 있습니다.

PGFPlot 내부의 기호를 해결하는 방법이 있습니까?

제거된 예:

\begin{filecontents*}{symbols.bib}
@entry{F,
    name={\ensuremath{F}},
    description={Force},
    unit={\si{\newton}}
    }

@entry{s,
    name={\ensuremath{s}},
    description={Normalised Distance},
    unit={}
    }
\end{filecontents*}
\documentclass{article}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%\usepackage[colorlinks=true, linkcolor=black, citecolor=blue, urlcolor=blue]{hyperref}
\usepackage{siunitx}
\usepackage[record, abbreviations, nonumberlist]{glossaries-extra}
    \setabbreviationstyle{long-short}
    \newglossary[slg]{symbols}{syi}{syg}{Symbols}
    \glsaddkey{unit}{\glsentrytext{\glslabel}}{\glsentryunit}{\GLsentryunit}{\glsunit}{\Glsunit}{\GLSunit}
    \glssetnoexpandfield{unit}
    \newglossarystyle{symbunitlong}{%
        \setglossarystyle{long3col}% base this style on the list style
        \renewenvironment{theglossary}{% Change the table type --> 3 columns
          \begin{longtable}{lp{\glsdescwidth}>{\centering\arraybackslash}p{2cm}}}%
          {\end{longtable}}%
        %
        \renewcommand*{\glossaryheader}{%  Change the table header
          \bfseries Sign & \bfseries Description & \bfseries Unit \\
          \hline
          \endhead%
        }
        \renewcommand*{\glossentry}[2]{%  Change the displayed items
            \glstarget{##1}{\glossentryname{##1}} %
            & \glossentrydesc{##1}% Description
            & \glsunit{##1}  \tabularnewline
        }
    }
    \GlsXtrLoadResources[src={symbols}, type={symbols}]
\usepackage{pgfplots}
    \usepgfplotslibrary{external}
    \pgfplotsset{compat=1.16}
%    \tikzexternalize[
%        mode=list and make,
%%        force remake,
%    ]
\begin{document}
\printunsrtglossary[type=symbols, style=symbunitlong]
    Just a test with \gls{s} and \gls{F} in \glsunit{F}. \\
    %
    \begin{tikzpicture}
        \begin{axis}[
            xlabel={\gls{s}},
            ylabel={$\gls{F}\ in\ \glsunit{F}$},
        ]
            \addplot[color=red,mark=x] coordinates {
                (2,-2.8559703)
                (3,-3.5301677)
                (4,-4.3050655)
                (5,-5.1413136)
                (6,-6.0322865)
                (7,-6.9675052)
                (8,-7.9377747)
            };
        \end{axis}
    \end{tikzpicture}
\end{document}

관련 정보