Text FormattingThe greek letter chi

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Bleevoe
Posts: 4
Joined: Wed Mar 02, 2011 2:28 pm

The greek letter chi

Post by Bleevoe »

I'm trying to make a chi (the greek letter) that looks like this:
chiu.png
chiu.png (1.53 KiB) Viewed 42900 times
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:
chi2o.png
chi2o.png (11.02 KiB) Viewed 42900 times
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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

shadgrind
Posts: 140
Joined: Thu Jul 16, 2009 12:39 am

The greek letter chi

Post by shadgrind »

Use the \raisebox command to raise the chi. If I do this in math mode:

Code: Select all

x \in \raisebox{2pt}{$\chi$}
I get this:
chitest.png
chitest.png (2.49 KiB) Viewed 42903 times
System: TeX Live 2012, Fedora 18 x86_64, GNU Emacs 24.2
Bleevoe
Posts: 4
Joined: Wed Mar 02, 2011 2:28 pm

Re: The greek letter chi

Post by Bleevoe »

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.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: The greek letter chi

Post by localghost »

The "chi" in your first picture is a simple capital »X« in math mode.


Best regards and welcome to the board
Thorsten
Bleevoe
Posts: 4
Joined: Wed Mar 02, 2011 2:28 pm

The greek letter chi

Post by Bleevoe »

Sorry about the previous external links.

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}
gives me
x.png
x.png (2.01 KiB) Viewed 42900 times
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

The greek letter chi

Post by localghost »

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}
Bleevoe
Posts: 4
Joined: Wed Mar 02, 2011 2:28 pm

Re: The greek letter chi

Post by Bleevoe »

Ah, there it is! Thank you.
2piruben
Posts: 1
Joined: Fri Aug 24, 2012 1:59 pm

The greek letter chi

Post by 2piruben »

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

Code: Select all

\newcommand{\goodchi}{\protect\raisebox{2pt}{$\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.
Post Reply