我想在 TikZ 中创建一个没有任何轴的颜色条。这是我迄今为止通过使用此优秀论坛提供的帮助所得到的。
我的问题:我想要的 y 轴刻度如下:-2e-3、-1,5e-3、-1e-3、...、2e-3。
例如参见另一个程序中的图片2;
使用类似$-2e-3$
y-tick 的东西不起作用;
错误:!软件包 PGF 数学错误:无法将输入“$-2^{-3}$”解析为浮点数,抱歉。不可读部分位于“$-2^{-3}$”附近。
这是我到目前为止的代码。(使用此代码我得到了上面显示的图片 1。)
\documentclass[tikz,border={12pt,12pt}]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
hide axis,
scale only axis, %
height=0pt, % Grafik auf größe null
width=0pt, % Grafik auf größe null
colorbar sampled, % Diskrete Stufung
colormap={mymap}{[1pt] rgb(0pt)=(0.68235,0,1);
rgb(9pt)=(0,0.1216, 1);
rgb(17pt)=(0, 0.69412, 1);
rgb(26pt)=(0, 1, 0.6863);
rgb(34pt)=(0, 1, 0.098);
rgb(43pt)=(0.557,1,0);
rgb(51pt)=(1, 0.8353, 0);
rgb(60pt)=(1, 0.2275, 0);
rgb(63pt)=(1,0.02745,0)},
colorbar style={
title={$J$ in $\frac{A}{m^2}$}, % Titel über Colorbar
ylabel= {$\cdot e^{-3}$}, % Beschriftung seitlich, text gedreht
samples=9, % Anzahl diskreter Schritte, so viele wie yticks
width=15, % Breite der Colorbar (des farbigen Bereichs)
height=220, % Höhe der Colorbar
ytick={-2, -1.5, -1,..., 2},% yticks Angabe einzeln mit komma getrennt, oder schrittweise mit 1,2,...,5
point meta min=-2, %neu % Beginn Colorbar, beachte yticks min
point meta max=2, %neu % Ende Colorbar, beachte yticks max
yticklabel style={
text width=2.5em, % Abstand yticks zu colorbar
align=right, %
}
}
]
\end{axis}
\end{tikzpicture}
\end{document}
我希望你理解我的问题和我想要做的事情。
2e^{-3}
如果有人能帮助我将 y-tick 值改为类似的值,我会非常高兴。
答案1
实现此目的的一种方法是执行以下操作:
- 使用范围的实际值
meta
,因此point meta min=-2e-3, point meta max=2e3
- 关闭刻度标签的整体缩放:
scaled y ticks = false
使用包解析并格式化刻度值
siunitx
,这可以非常精细地控制数字格式。加载\usepackage{siunitx}
,然后设置yticklabel={ \num[ scientific-notation = fixed, fixed-exponent = -3, output-exponent-marker = \text{e}, round-integer-to-decimal = true, round-mode = places, round-precision = 1 ]{\tick} }
\documentclass[tikz,border={12pt,12pt}]{standalone}
\usepackage{pgfplots, siunitx}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
hide axis,
scale only axis, %
height=0pt, % Grafik auf größe null
width=0pt, % Grafik auf größe null
colorbar sampled, % Diskrete Stufung
colormap={mymap}{[1pt] rgb(0pt)=(0.68235,0,1);
rgb(9pt)=(0,0.1216, 1);
rgb(17pt)=(0, 0.69412, 1);
rgb(26pt)=(0, 1, 0.6863);
rgb(34pt)=(0, 1, 0.098);
rgb(43pt)=(0.557,1,0);
rgb(51pt)=(1, 0.8353, 0);
rgb(60pt)=(1, 0.2275, 0);
rgb(63pt)=(1,0.02745,0)},
colorbar style={
title={$J$ in $\frac{A}{m^2}$}, % Titel über Colorbar gedreht
samples=9, % Anzahl diskreter Schritte, so viele wie yticks
width=15, % Breite der Colorbar (des farbigen Bereichs)
height=220, % Höhe der Colorbar
%ytick={-2, -1.5, -1,..., 2},% yticks Angabe einzeln mit komma getrennt, oder schrittweise mit 1,2,...,5
point meta min=-2e-3, %neu % Beginn Colorbar, beachte yticks min
point meta max=2e-3, %neu % Ende Colorbar, beachte yticks max
scaled y ticks = false,
yticklabel={
\num[
scientific-notation = fixed,
fixed-exponent = -3,
output-exponent-marker = \text{e},
round-integer-to-decimal = true,
round-mode = places,
round-precision = 1
]{\tick}
},
yticklabel style={
text width=4em, % Abstand yticks zu colorbar
align=right, %
}
}
]
\end{axis}
\end{tikzpicture}
\end{document}
答案2
PSTricks 解决方案。
带有 e 符号:
\documentclass{article}
\usepackage{multido,pstricks}
\definecolor{color1}{rgb}{0.68235,0,1}
\definecolor{color2}{rgb}{0,0.1216,1}
\definecolor{color3}{rgb}{0,0.69412,1}
\definecolor{color4}{rgb}{0,1,0.6863}
\definecolor{color5}{rgb}{0,1,0.098}
\definecolor{color6}{rgb}{0.557,1,0}
\definecolor{color7}{rgb}{1,0.8353,0}
\definecolor{color8}{rgb}{1,0.2275,0}
\definecolor{color9}{rgb}{1,0.02745,0}
\begin{document}
\begin{pspicture}(-0.33,-0.15)(2.3,8.7)
\multido{\i = 1+1}{8}{\psframe[dimen = m, fillstyle = solid, fillcolor = color\i](!0 \i\space 1 sub)(0.5,\i)}
\multido{\iA = 0+2, \iB = -2+1}{5}{\rput[r](1.9,\iA){$\iB\mathrm{e}^{-3}$}}
\multido{\i = 1+2, \r = -1.5+1}{4}{\rput[r](1.9,\i){$\r\mathrm{e}^{-3}$}}
\rput(0.25,8.5){$J$ in $\frac{A}{\textup{m}^{2}}$}
\end{pspicture}
\end{document}
使用科学计数法,我认为这更好:
\documentclass{article}
\usepackage{multido,pstricks}
\definecolor{color1}{rgb}{0.68235,0,1}
\definecolor{color2}{rgb}{0,0.1216,1}
\definecolor{color3}{rgb}{0,0.69412,1}
\definecolor{color4}{rgb}{0,1,0.6863}
\definecolor{color5}{rgb}{0,1,0.098}
\definecolor{color6}{rgb}{0.557,1,0}
\definecolor{color7}{rgb}{1,0.8353,0}
\definecolor{color8}{rgb}{1,0.2275,0}
\definecolor{color9}{rgb}{1,0.02745,0}
\begin{document}
\begin{pspicture}(-0.33,-0.15)(2.3,8.7)
\multido{\i = 1+1}{8}{\psframe[dimen = m, fillstyle = solid, fillcolor = color\i](!0 \i\space 1 sub)(0.5,\i)}
\multido{\iA = 0+2, \iB = -2+1}{5}{\rput[r](2.3,\iA){$\iB \cdot 10^{-3}$}}
\multido{\i = 1+2, \r = -1.5+1}{4}{\rput[r](2.3,\i){$\r \cdot 10^{-3}$}}
\rput(0.25,8.5){$J$ in $\frac{A}{\textup{m}^{2}}$}
\end{pspicture}
\end{document}