7

我可以将 Style 应用于下面的“Labeled”的输出吗?

Manipulate[\[Lambda],
Control@{{\[Lambda], 401,
Style["     \[Lambda]", Black, Bold, 24]},
Range[401, 570, 1],
ControlType -> Slider,
ControlPlacement -> Bottom,
Appearance -> "Labeled",
ImageSize -> 200}]

那是在 Slider 的右侧:

在此处输入图像描述

4

2 回答 2

10

您想要该选项BaseStyle(出现在 中Options[Slider])。例如

Manipulate[
 Plot[Cos[k x], {x, 0, 2 Pi}, PlotLabel -> "Cosine"], 
 {{k, 1, Style["x", Black, Bold, 24]}, 0, 4, 
  ControlType -> Slider, Appearance -> "Labeled", 
  ControlPlacement -> Bottom, ImageSize -> 200, 
  BaseStyle -> {Red, Large, Italic, FontFamily -> "Times"}}]

余弦

在查看此内容时,我注意到您也可以使用几乎未记录 ControlType -> LabeledSlider的,只是为了不同的东西。

于 2011-10-16T23:57:53.510 回答
2

它似乎至少部分受到LabelStyle和的影响BaseStyle。(由于某种原因,我无法更改字体,但大小、重量、颜色似乎都可以正常工作。)

于 2011-10-16T23:41:03.837 回答