# Fraction bar is not visible in Makie plot with text! and annotations! methods

**URL:** https://discourse.julialang.org/t/fraction-bar-is-not-visible-in-makie-plot-with-text-and-annotations-methods/75938
**Category:** Visualization
**Tags:** plotting, makie, latexstrings
**Created:** [February 7, 2022, 9:16am UTC](https://discourse.julialang.org/t/fraction-bar-is-not-visible-in-makie-plot-with-text-and-annotations-methods/75938 "2022-02-07T09:16:49Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![fnoessler](https://avatars.discourse-cdn.com/v4/letter/f/eb9ed0/32.png) [@fnoessler](https://discourse.julialang.org/u/fnoessler)
#### Post date: [February 7, 2022, 9:16am UTC](https://discourse.julialang.org/t/fraction-bar-is-not-visible-in-makie-plot-with-text-and-annotations-methods/75938/1 "2022-02-07T09:16:49Z")

</div>

Hello,

I tried to insert an equation with the `text!` and `annotations!` methods in Makie. Unfortunately, the fraction bar is not visible for me. However, the fraction bar is visible in the Axis title, xlabel, ylabel and the legend title. The problem is also in the exported figures. I tried it with CairoMakie and GLMakie.

```julia
using CairoMakie

let 
    fig=Figure()
    ax1 = Axis(fig[1,1], 
        title=L"\frac{a}{b}", 
        xlabel=L"\frac{a}{b}",
        ylabel=L"\frac{a}{b}")
    text!(L"\frac{a}{b}")
    annotations!(L"\frac{a}{b}", position=(0.2,0.2))
    scatter!([0.5],[0.5], label="test")
    Legend(fig[1,2], ax1, L"\frac{a}{b}")
    save("test.png", fig)
    fig
end

```

 ![test](https://global.discourse-cdn.com/julialang/original/3X/d/d/dd90f63bc96cdf25fc0135fc4758351c147bbfb7.png)

My Makie versions are:  
[13f3f980] CairoMakie v0.7.2  
[e9467ef8] GLMakie v0.5.2

Many thanks for your help!
