Is there a Julia Latex “symbol”? So Latex in Latex is \LaTeX{}, is there something like \Julia{} (presumably after \usepackage{juliasymbols} or something)?
Note that the original poster on Slack cannot see your response here on Discourse. Consider transcribing the appropriate answer back to Slack, or pinging the poster here on Discourse so they can follow this thread. (Original message )(More Info)
If you just want to include the official Julia logo in color without much ado, you could inline a PDF:
The \includegraphics[height=0.7em]{julia-logo-color.pdf}
code used to generate Figure \ref{fig:devilsbraid} is displayed
using the minted package, which facilitates expressive ...
I think it would be better to type plain Julia than use that approximation … It is sort of an official trademark, so it should probably be reproduced with some attempt at fidelity… Font should be correct, for example.
I’m not sure how much TikZ is capable of - if you can access OpenType fonts and UTF8 characters, you could use that font that has the Julia logo and access it that way (although it would be monochrome, obviously).
Yea, I don’t think that’s possible in LaTeX. Thanks for the answers though.
I guess one way “in” might be through fontawesome, they seem to have a lot of random symbols, also python. Then from there, there’s CTAN: Package fontawesome. But I have no idea how often that LaTeX package gets updated when fontawesome does.
Cool. Fonts are nearly always monochrome†, so PDF or SVG (or some more TikZ coding) would be the way to go if you wanted colour or were really procrastinating…
† Actually, there are colour fonts (https://www.colorfonts.wtf/) but these are pretty new, and it would be a challenge to persuade LaTeX to adopt the technology (even if there was a suitable font available).
just to be clear, my julia_logo_latex package works well in simple scenarios, but since the macro uses a TikZ environment, using the macro in another TikZ environment is probably causing issues for @yakir12.