Re: Producing ticks on left axis with axis labels
- To: mathgroup at smc.vnet.net
- Subject: [mg38098] Re: Producing ticks on left axis with axis labels
- From: Vince Boros <borosv at itee.uq.edu.au>
- Date: Tue, 3 Dec 2002 04:31:27 -0500 (EST)
- Organization: The University of Queensland, Australia
- References: <as5r3e$nl4$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
In reply to my question, it turned out that in the menu item Edit ->
Preferences -> Formatting Options -> Font Options, I had Background set
to GrayLevel[1]. I changed Background to None, and the problem
disappeared. So what had been going wrong is that I had been writing
black text on a white background on top of the graph, instead of black
text on a transparent background. D'Oh! Thanks to the people who
replied offering suggestions.
Vince
Vince Boros wrote:
> When I plot a graph with the following FrameTicks specification:
>
> FrameTicks ->
> {
> Automatic,
> {
> {-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}}
> },
> Automatic,
> {
> {-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}}
> }
> }
>
> the tick to the right of the -Pi label on the left axis does not appear.
> The only way I can make it appear in Mathematica is with:
>
> FrameTicks ->
> {
> Automatic,
> {
> {-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}},
> {-\[Pi], "", {0.01, 0}, {AbsoluteThickness[1.5]}}
> },
> Automatic,
> {
> {-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}}
> }
> }
> where I have repeated the frametick line but omitting the -Pi label.
>
> I'm using Mathematica 4.1.1.0 on Windows XP.
>
>
> Vince Boros
>
>
>