tikzpicture의 색상이 앱마다 다르게 나타납니다.

tikzpicture의 색상이 앱마다 다르게 나타납니다.

부인 성명:솔직히 여기가 이런 질문을 하는 게시판인지는 잘 모르겠습니다. 그런데 적절한 포럼을 몰라서 여기에 질문드립니다. 누구든지 적절한 포럼을 제안할 수 있다면 그것도 도움이 될 것입니다.

다음 코드 조각을 참조하세요.

\begin{tikzpicture}[scale=2]
    \fill [fill=green!30] (0,0) -- (3,0) -- (3.5,2) -- (0.5,2) -- cycle;
    \fill [fill=green!30, opacity=50] (0,0) rectangle (3,2);
    \fill [fill=blue!80, opacity=50] (0,0) -- (3,0) -- (2.5,2) -- cycle;
    \draw [black, dashed] (2.5,2) -- (2.5,0) node[midway, right] {$ h $};
    \draw (0,0) -- (3,0) node [midway, below] {$ b $};          
\end{tikzpicture}

이것은 삼각형의 넓이 공식을 설명하기 위한 것입니다. 이 이미지의 색상은 앱마다 다르게 표시됩니다. 저는 설명에 "13.3인치(1440 x 900)" 및 "Intel HD Graphics 6000 1536MB 그래픽"이라고 표시된 내장 디스플레이가 있는 MacBook Air(13인치, 2015년 초)를 사용하고 있습니다. 기본 Preview앱은 다음과 같은 이미지를 표시합니다.

여기에 이미지 설명을 입력하세요

앱은 다음 Adobe Acrobat Reader과 같은 색상을 표시합니다.

여기에 이미지 설명을 입력하세요

Preview색상이 제대로 표시되지 않지만 blue불투명도는 준수됩니다. 반면에 는 Adobe Acrobat Reader정확히 다른 방식으로 하고 있습니다. 그 이유는 무엇입니까? 나는 이것이 뭔가 관련이 있다고 의심한다.색상 정확도. 하지만 앱에 색상 정확도에 문제가 있을 수 있나요? 그건 화면만의 문제 아닌가요? 저에게 계몽해주세요.

편집하다:요청한 대로 다음은 MWE입니다.

\documentclass[aspectratio=169,10pt, notheorems]{beamer}
\setbeamerfont{headline}{size=\fontsize{8}{0}\selectfont}
\setbeamerfont{footline}{size=\fontsize{6}{0}\selectfont}
\usetheme{CambridgeUS}
\usefonttheme{serif}
\usecolortheme{beetle}
\usepackage{xcolor}
\usepackage{tikz}
\setbeamertemplate{navigation symbols}{}
\setbeamercolor{background canvas}{bg=black}
\setbeamercolor{normal text}{fg=white}
\begin{document}
    \begin{frame}
        \begin{tikzpicture}[scale=2]
            \fill [fill=green!30] (0,0) -- (3,0) -- (3.5,2) -- (0.5,2) -- cycle;
            \fill [fill=green!30, opacity=50] (0,0) rectangle (3,2);
            \fill [fill=blue!80, opacity=50] (0,0) -- (3,0) -- (2.5,2) -- cycle;
            \draw [black, dashed] (2.5,2) -- (2.5,0) node[midway, right] {$ h $};
            \draw (0,0) -- (3,0) node [midway, below] {$ b $};          
        \end{tikzpicture}
    \end{frame}
\end{document}

관련 정보