# Beautiful Makie Gallery

**URL:** https://discourse.julialang.org/t/beautiful-makie-gallery/62523
**Category:** Package Announcements
**Created:** [June 7, 2021, 2:29pm UTC](https://discourse.julialang.org/t/beautiful-makie-gallery/62523 "2021-06-07T14:29:56Z")
**Posts on this page:** 1
**Showing post:** 20

<div class="post-metadata">

### Author: ![sdanisch](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/sdanisch/32/1406_2.png) [@sdanisch](https://discourse.julialang.org/u/sdanisch)
#### Post date: [June 7, 2021, 10:56pm UTC](https://discourse.julialang.org/t/beautiful-makie-gallery/62523/20 "2021-06-07T22:56:38Z")

</div>

> [@EvoArt](#):
>
> Do you happen to know if there’s an obvious reason why plots need to be rasterisedduring the export process?

Because it’s ridiculously hard to get text layouts out of latex, and the only feasible way, without reimplementing the layouting, is to export to svg and draw that - which requires a backend that knows how to draw svgs.  
Makie is getting both ways integrated tightly soon with:  
[GitHub - JuliaPlots/MakieTeX.jl: TeX integration in Makie](https://github.com/JuliaPlots/MakieTeX.jl) (svg route)  
[GitHub - Kolaru/MathTeXEngine.jl: A latex math mode engine in pure Julia.](https://github.com/Kolaru/MathTeXEngine.jl) (own parsing + layouting, thanks to @Kolaru )

A little teaser from @jules, who started a deeper integration of MathTexEngine:

```julia
lines(cumsum(randn(1000)),
    axis = (
        title = L"x + y - sin(x) × tan(y) + \sqrt{2}",
        xlabel = L"\lim_{x →\infty} A^j v_{(a + b)_k}^i \sqrt{2} x!= \sqrt{\frac{1+6}{4+a+g}}\int_{0}^{2π} \sin(x) dx",
        ylabel = L"x + y - sin(x) × tan(y) + \sqrt{2}",
    ),
    figure = (fontsize = 18, font = "NewCM10-Regular.otf")
)

```

 ![image](https://global.discourse-cdn.com/julialang/original/3X/b/9/b9c32461cfbb3cd04a689a5fcb51b2980d43a3a9.png)

---

_[View the full topic](https://discourse.julialang.org/t/beautiful-makie-gallery/62523)._
