我正在制作一张海报(使用巴波斯特),我希望在其中添加一些显微镜图像。为了让荧光信号更加突出,我将该细胞的背景更改为“漆黑”,我将其定义为
\definecolor{pitchblack}{cmyk}{0,0,0,1}
我也尝试过
\definecolor{pitchblack}{rgb}{0,0,0}
然而,通过前景中的显微镜图像,我发现“黑色”并不是真正的黑色:
该类baposter
带来了xcolor
并tikz
伴随而来,所以我假设我的颜色问题与这些包有关。所以我的问题是,如何使背景框的“黑色”足够黑以匹配这些图像的背景?
框架完整代码:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\headerbox{Preliminary Images}{name=prelim,column=2,row=0,boxColorOne=pitchblack}{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{center}
\renewcommand{\arraystretch}{0}
\begin{tabular}{@{}c@{}c@{}c@{}}
\raisebox{-2ex}{
\parbox[t]{0.25\textwidth}{\scriptsize\color{white} Representative volume renderings of HeLa cells imaged using TALEs
against the $\beta$-globin locus. Signals are approximately 0.3$\mu$m
in diameter.}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_02_volume_view.jpg}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_04_volume_view.jpg}} \\
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_05_volume_view.jpg}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_07_volume_view.jpg}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_10_volume_view.jpg}}
\end{tabular}
\end{center}
}
最后要说的是,该问题似乎与 pdf 查看器无关(即在 evince、acroread 和 gimp 中看起来是这样的)。
答案1
简短回答:“K 不真的代表黑色”
\definecolor{pitchblack}{cmyk}{1 1 1 1}
长答案
这是 CMYK 问题:baposter
加载xcolor
默认情况下不再使用 package 选项cmyk
。
即使传递rgb
给也xcolor
无济于事。
尽管如此,还是应该进行测试打印,因为颜色并不总是像看起来的那样。
显示器使用加色模型RGB,其中像素由三个子像素组成。加法意味着,要获得颜色,必须添加光。
无输出:黑色;满输出:白色。
打印机使用减色模型,例如CMYK减法意味着去除光(例如,当你添加更多青色白皮书中反映的红色的).
无输出:白色(全反射);全输出:黑色。
黑色为什么不是黑色?
好问题!
输出取决于许多因素,例如纸张、打印机、碳粉等……
再次检查您的打印输出。即使在不同的 PDF 查看器中,非 CMYK(0, 0, 0, 1) 或 CMYK(1, 1, 1, 1) 的颜色也由不同的 RGB 值表示。
例子
在下面的 MWE 中,我提供了三种新的“沥青”黑色来进行比较:
Name CMYK RGB
———————————————————————————————————————————————
pitchblack0 0 0 0 1 .35 .31 .32
pitchblack1 .6 .4 .4 1 .13 .12 .12
pitchblack2 1 1 1 1 .0 .0 .0
pitchblack3 .75 .68 .67 .9 .16 .14 .13
black 0 0 0 1 .35 .31 .32
代码
\documentclass[tabular]{standalone}
\usepackage[cmyk]{xcolor}
\definecolor{pitch0}{cmyk}{0 0 0 1}
\definecolor{pitch1}{cmyk}{.6 .4 .4 1}
\definecolor{pitch2}{cmyk}{1 1 1 1}
\definecolor{pitch3}{cmyk}{.75 .68 .67 .9}
\newcommand*\blackbox[1]{\color{#1}\rule[-1ex]{3cm}{2em}}
\begin{document}\ttfamily
\begin{tabular}{lrrc}
Color & CMYK & RGB & Output \\
pitch0 & 0 0 0 1 & .35 .31 .32 & \blackbox{pitch0} \\
pitch1 & .6 .4 .4 1 & .13 .12 .12 & \blackbox{pitch1} \\
pitch2 & 1 1 1 1 & .0 .0 .0 & \blackbox{pitch2} \\
pitch3 & .75 .68 .67 .9 & .16 .14 .13 & \blackbox{pitch3} \\
black & 0 0 0 1 & .35 .31 .32 & \blackbox{black} \\
\end{tabular}
\end{document}