문서의 나머지 부분과 일치하도록 플롯의 코드 근처 축 및 노드 글꼴 변경

문서의 나머지 부분과 일치하도록 플롯의 코드 근처 축 및 노드 글꼴 변경

모든 기호, 숫자, 문자 등을 내 문서의 나머지 부분의 글꼴과 일치하도록 만들고 싶습니다. 현재 X축과 제목에 올바른 글꼴이 있습니다. 그러나 y축과 "현 근처 노드"의 숫자는 그렇지 않습니다. 어떻게 해야 하나요?

현재 내 코드는 다음과 같습니다. https://gyazo.com/05ab769479252a77e78360ea037ad70d

내 코드는 다음과 같습니다.

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pdflscape}
\usepackage[table]{xcolor}
\usepackage[landscape, a4paper, bottom=0.0in, margin=0in]{geometry}
\usepackage{pgfplots}
\usepackage{array}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[T1]{fontenc}


%Customization
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\pgfplotsset{compat=newest} % Allows to place the legend below plot
\usepgfplotslibrary{
  units, % Allows to enter the units nicely
  groupplots
}



\pagenumbering{gobble}
\renewcommand{\familydefault}{\sfdefault}
\definecolor{customgreen}{RGB}{21,155,151}
\definecolor{custompink}{RGB}{230,55,148}
\definecolor{customlightblue}{RGB}{207,210,235}
\definecolor{customlighterblue}{RGB}{232,234,245}
\definecolor{custombrown}{RGB}{194,181,155}



\title{test}
\author{sinasohi}
\date{January 2017}

\begin{document}
%\maketitle

\include{Page1}
\include{Page2}
\include{Page3}
\include{Page4}
\include{Page5}

\end{document}

3페이지 코드:

\pgfplotstableread[row sep=\\,col sep=&]{
    interval    & a     & b     \\
    K74         & 32.9  & 27.5  \\
    K76         & 23.5  & 22.5  \\
    K75         & 25.7  & 25.0  \\
    K77         & 22.3  & 30    \\
    K89-90      & 30.6  & 30    \\
    K92         & 19.3  & 15    \\
    }\mydata

\pgfplotstableread[row sep=\\,col sep=&]{
    interval        & a     & b     \\
    K78             & 18.8  & 20  \\
    K85, K86, K87   & 66.3  & 60  \\
    }\yourdata

\begin{figure}
\centering
\begin{tikzpicture}
    \begin{groupplot}[
            group style={group size=2 by 1},
            legend style={at={(0.5,1)}, text width=6em, text height=1.5ex, anchor=north,legend columns=-1},
            ybar,
            /tikz/bar width=.6cm,            
            xtick=data,
            ymin=0, %ymax=40,
            ,height=10cm,
            nodes near coords,
            every node near coord/.append style={color=black, font=\footnotesize}            
        ]

\nextgroupplot[
   title=\textbf{Kardiovaskulære diagnoser},
   width=.55\textwidth,
   symbolic x coords={K74,K76,K75,K77,K89-90,K92},
   ymax=40
]
        \addplot[red!20!customgreen,fill=customgreen!80!white] table[x=interval,y=a]{\mydata};
        \addplot[red!20!custompink,fill=custompink!80!white] table[x=interval,y=b]{\mydata};
        \legend{Klinik 12345, Landsrapport}

\nextgroupplot[
    symbolic x coords={K78, {K85, K86, K87}},
    width=.3\textwidth,
    enlarge x limits=0.7,
    title=\textbf{Yderligere diagnoser},
    ymax=80,
    /tikz/bar width=.7cm,
    ]

        \addplot[red!20!customgreen,fill=customgreen!80!white] table[x=interval,y=a]{\yourdata};
        \addplot[red!20!custompink,fill=custompink!80!white] table[x=interval,y=b]{\yourdata};
        \legend{Klinik 12345, Landsrapport}
\end{groupplot}
\end{tikzpicture}
\end{figure}

답변1

문제는

\renewcommand{\familydefault}{\sfdefault}

수학 모드에 사용되는 글꼴은 변경되지 않습니다. 예를 들어 (위 줄에 추가로) 사용하십시오.

\usepackage[cm]{sfmath}

추가 솔루션은 다음을 참조하세요.산세리프 글꼴에도 수학 기호를 입력하시겠습니까?.

관련 정보