我正在使用块球体包绘制的球的阴影有问题。使用白色作为球的颜色,不透明度 = 0.7 会使球呈现深灰色。我不想降低不透明度,因为这会使阴影的 3D 效果更加消失。但由于我已经使用白色作为颜色,我不知道如何使球看起来更白。
有人能帮我吗?我还很感激任何关于我在这里可以使用哪些标签的提示 - tikz 和物理似乎不太合适。
梅威瑟:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{tikz}
\usetikzlibrary{positioning,arrows,calc,math,angles,quotes}
\usepackage{blochsphere}
\usepackage{braket}
\begin{document}
%%%% Change these parameters to change the position of psi, or the size/rotation of the sphere
\def\rotationSphere{-10}
\def\tiltSphere{10} %0.01
\def\radiusSphere{2cm}
\def\psiLat{90}
\def\psiLon{45}
\begin{blochsphere}[radius=\radiusSphere,opacity=0.7,rotation=\rotationSphere,tilt=\tiltSphere,color=white]
%\drawBallGrid[style={opacity=.3}]{30}{30}
% Draw the vertical plane
%\drawLongitudeCircle[]{\rotationSphere} % draw the longitude that face us to delimit the sphere
%Farbeinstellung
%draw={rgb,255:red,199; green,199; blue,199}
\drawLongitudeCircle[style={opacity=0.3,line width=0.8}]{90-0}
% ... and the equatorial plane
\drawLatitudeCircle[style={opacity=0.3,line width=0.8}]{90-90} %style={dashed}
\end{blochsphere}
\end{document}