Text Formatting ⇒ how can I write this symbol in latex?
how can I write this symbol in latex?
Symbol:
http://img407.imageshack.us/img407/2998/psiupdown.png
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: how can I write this symbol in latex?
Re: how can I write this symbol in latex?
I guess there is no such symbol. In that case, how can I write it on latex? I heard about creating new symbols in latex somewhere. How can I do this?
how can I write this symbol in latex?
If you can find it in some other font, even if that font is not set up for LaTeX, you could still use it in XeLaTeX, or export a tiny one-character PDF for inserting into your LaTeX documents. That's probably the best way.
As for drawing things, you can use packages like pstricks and pgf/TikZ, but this would be difficult to draw from scratch. Perhaps creating a vector image with something like inkscape (rather than paint, which would only give you raster graphics) is one thing to consider.
Finally you could just try to recreate the symbol by rotating and overlapping existing symbols (using the graphicx package for example; perhaps it would be easier to use TikZ commands, I'm not sure...), e.g., I get the following just by placing a rotated \Psi on top of another \Psi (with the first one raised). (I'm using the txfonts package since its \Psi seems closest to yours of the ones I looked at):
Code:
Code: Select all
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{txfonts}
\usepackage{graphicx}
\begin{document}
\makebox{\rlap{\raisebox{3.9pt}{\ensuremath{\Psi}}}\rotatebox[origin=c]{180}{\ensuremath{\Psi}}}
\end{document}
Re: how can I write this symbol in latex?
how can I write this symbol in latex?
Anyway, you could scale it to any size you want. Here is is scaled to the height of the letter H.
E.g.:
Code: Select all
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{txfonts}
\usepackage{graphicx}
\newlength{\Hheight}
\settoheight{\Hheight}{H}
\newcommand{\updownpsi}{\resizebox{!}{\Hheight}{\makebox{\rlap{\raisebox{3.9pt}{\ensuremath{\Psi}}}\rotatebox[origin=c]{180}{\ensuremath{\Psi}}}}}
\begin{document}
ABC\updownpsi DEF
\end{document}