免責聲明:老實說,我不知道這是否是提出這個問題的論壇。但由於不知道合適的論壇,所以在這裡提問。如果有人可以推薦合適的論壇,那也會有幫助。
請參考以下程式碼片段。
\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}
這是為了說明三角形面積的公式。此圖像中的顏色在不同的應用程式中顯示不同。我使用的是配備內建顯示器的 MacBook Air(13 英寸,2015 年初),其說明中顯示“13.3 英寸 (1440 x 900)”和“Intel HD Graphics 6000 1536 MB 顯示卡”。預設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}