# Greek Alphabet with Weave

**URL:** https://discourse.julialang.org/t/greek-alphabet-with-weave/25357
**Category:** New to Julia
**Tags:** question
**Created:** [June 17, 2019, 7:36am UTC](https://discourse.julialang.org/t/greek-alphabet-with-weave/25357 "2019-06-17T07:36:40Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kapple](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kapple/32/218915_2.png) [@kapple](https://discourse.julialang.org/u/kapple)
#### Post date: [June 17, 2019, 7:36am UTC](https://discourse.julialang.org/t/greek-alphabet-with-weave/25357/1 "2019-06-17T07:36:40Z")

</div>

Is there a possible way to include the Greek alphabet as part of using Weave for MarkDown to pdf?

As in, use Greek letters in the code and in the output. E.g. `\alpha` + TAB becomes \alpha in editor, and `\alpha` becomes \alpha in the plot labels (as an example).

Example below: I can TAB on `\alpha` and it would become \alpha, and \beta becomes the title of the plot.

# Minimum (Not-)Working Example of Code

The equation we are interested in is

```julia-auto
$$
\alpha = 1
$$

```

which can be plotted as:

````julia-auto
```julia
plot(sol, title = "\beta")

````

```julia-auto

```
