# Latex Title Makie

**URL:** https://discourse.julialang.org/t/latex-title-makie/102667
**Category:** General Usage
**Tags:** question, makie
**Created:** [August 10, 2023, 9:35am UTC](https://discourse.julialang.org/t/latex-title-makie/102667 "2023-08-10T09:35:42Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![janrpeters](https://avatars.discourse-cdn.com/v4/letter/j/d26b3c/32.png) [@janrpeters](https://discourse.julialang.org/u/janrpeters)
#### Post date: [August 10, 2023, 9:35am UTC](https://discourse.julialang.org/t/latex-title-makie/102667/1 "2023-08-10T09:35:42Z")

</div>

No matter whether I use

```julia
    title = "Example Trajectory", #L"Example Trajectory for $\tau=0$",
    titlefont = texfont(),

```

or

```julia
    title =#L"Example Trajectory for $\tau=0$",

```

in Makie, I never manage to get the title to become bold (especially not with \texbf which does not work with LatexStrings). Does anyone have pointers for me?

---

<div class="post-metadata">

### Author: ![janrpeters](https://avatars.discourse-cdn.com/v4/letter/j/d26b3c/32.png) [@janrpeters](https://discourse.julialang.org/u/janrpeters)
#### Post date: [August 10, 2023, 9:40am UTC](https://discourse.julialang.org/t/latex-title-makie/102667/2 "2023-08-10T09:40:31Z")

</div>

Ah, figured it out: I can do

```julia
        titlefont = texfont(:bold),

```
