tikz 手册中的图形颜色背景非常好。它是某种米色或奶油色。我们如何在自己的图形中应用它。其次,我想将其作为我的投影仪幻灯片的背景颜色。怎么做?
答案1
根据 Christian Hupfer 的评论,您可以在 中找到定义/usr/local/texlive/2017/texmf-dist/doc/generic/pgf/macros/pgfmanual-en-macros.tex
。
\documentclass{article}
\usepackage{xcolor}
\definecolor{graphicbackground}{rgb}{0.96,0.96,0.8}
\definecolor{codebackground}{rgb}{0.9,0.9,1}
\begin{document}
\colorbox{graphicbackground}{Ti\textit{k}Z graphic background}
\colorbox{codebackground}{Ti\textit{k}Z code background}
\end{document}
要将此颜色设置为投影仪演示文稿的背景,只需使用
\documentclass{beamer}
\definecolor{graphicbackground}{rgb}{0.96,0.96,0.8}
\setbeamercolor{background canvas}{bg=graphicbackground}