Skip to content

Commit

Permalink
no latex syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarusA committed Jan 21, 2024
1 parent 811e061 commit 6d6c571
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions docs/examples/2d/lines/log_scales.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ y = -0.75sin.(x);

```julia
@gp "set logscale x" "set logscale cb" yrange = [-1,1] :-
@gp :- raw"""set format cb '$10^{%T}$'"""
@gp :- xlab = raw"""default format $x$""" cblab = "Scientific Notation" :-
@gp :- ylab = raw"""$-0.75\sin(x)$""" :-
@gp :- raw"""set format cb '10^{%T}'"""
@gp :- xlab = raw"""default format x""" cblab = "Scientific Notation" :-
@gp :- ylab = raw"""-0.75 sin(x)""" :-
@gp :- x y x "w l notit lw 2 dt 1 lc palette"
saveas("log_scales");
```
Expand Down
16 changes: 8 additions & 8 deletions docs/examples/2d/lines/log_scales.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions examples/2d/lines/log_scales.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ y = -0.75sin.(x);
# ## log scales

@gp "set logscale x" "set logscale cb" yrange = [-1,1] :-
@gp :- raw"""set format cb '$10^{%T}$'"""
@gp :- xlab = raw"""default format $x$""" cblab = "Scientific Notation" :-
@gp :- ylab = raw"""$-0.75\sin(x)$""" :-
@gp :- raw"""set format cb '10^{%T}'"""
@gp :- xlab = raw"""default format x""" cblab = "Scientific Notation" :-
@gp :- ylab = raw"""-0.75 sin(x)""" :-
@gp :- x y x "w l notit lw 2 dt 1 lc palette"
saveas("log_scales");

Expand Down
6 changes: 3 additions & 3 deletions src_md_examples/2d/lines/log_scales.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ nothing #hide

````@example log_scales
@gp "set logscale x" "set logscale cb" yrange = [-1,1] :-
@gp :- raw"""set format cb '$10^{%T}$'"""
@gp :- xlab = raw"""default format $x$""" cblab = "Scientific Notation" :-
@gp :- ylab = raw"""$-0.75\sin(x)$""" :-
@gp :- raw"""set format cb '10^{%T}'"""
@gp :- xlab = raw"""default format x""" cblab = "Scientific Notation" :-
@gp :- ylab = raw"""-0.75 sin(x)""" :-
@gp :- x y x "w l notit lw 2 dt 1 lc palette"
saveas("log_scales");
nothing #hide
Expand Down

0 comments on commit 6d6c571

Please sign in to comment.