Text Formatting ⇒ The greek letter chi
The greek letter chi
I'm trying to make a chi (the greek letter) that looks like this:
I realize that the chi in the first picture might be custom-made, but here's to hoping it isn't and that someone knows about it.
I've managed to find three different chis: \chi, \chiup and \upchi, but none of them look like the one above. This is the result I get using those three:
My biggest qualm with these three is that they are all kind of lowered compared to the x and \in symbol.I realize that the chi in the first picture might be custom-made, but here's to hoping it isn't and that someone knows about it.
Last edited by Bleevoe on Wed Mar 02, 2011 7:13 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

The greek letter chi
Use the \raisebox command to raise the chi. If I do this in math mode:
I get this:
Code: Select all
x \in \raisebox{2pt}{$\chi$}
Re: The greek letter chi
Ah, it's still not the same as the one in the first picture, but I suppose it's good enough for me. Thank you.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: The greek letter chi
The "chi" in your first picture is a simple capital »X« in math mode.
Best regards and welcome to the board
Thorsten
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
The greek letter chi
Sorry about the previous external links.
My capital X (or capital chi, which apparently is the same) doesn't look like that.
gives me
My capital X (or capital chi, which apparently is the same) doesn't look like that.
Code: Select all
\documentclass[a4paper,12pt]{article}
\begin{document}
\[x \in X\]
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
The greek letter chi
I missed a small detail in my last post. Originally I wanted to write that it is a capital calligraphic »X«. Sorry for the confusion. Sometimes one word can make a big difference.
Code: Select all
\documentclass[12pt,a4paper]{article}
\begin{document}
\[
x\in\mathcal{X}
\]
\end{document}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: The greek letter chi
Ah, there it is! Thank you.
The greek letter chi
Be careful with \raisebox since is a fragile command. With the current definition for "chi" you can have problems when trying to use it, for instance, in a caption. You will have to used the command \protect each time, or introduce it in the definition of chi
Additionally, it good be also good to have a more generic measure instead of 2pt. For instance a length that is a fraction of the actual length of the letter chi. This way, the definition will be still valid even when changing the font size.
Code: Select all
\newcommand{\goodchi}{\protect\raisebox{2pt}{$\chi$}}