Math & Science ⇒ Tau variations
Tau variations
Trying to get a particular style of tau symbol in latex but have had no luck.
http://www.netsoc.tcd.ie/~couperc/tau.JPG
The tau on the left (Latex) is the one I'm getting but the tau on the right (MS Word) is the one that I want.
Anyone know if there's a particualr font or language that will give me the style of symbol I want (if it was a language I could use the babel package or similar)
Thanks
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
Tau variations
try the kpfonts:
Code: Select all
\documentclass{article}
\usepackage{kpfonts}
\begin{document}
$\tau$
\end{document}
Re: Tau variations
any way i can use it just for that particular tau?
Tau variations
Yes, it will.couperc wrote:Will this affect the whole document?..
No, you cannot, at least not if you use the kpfonts package.couperc wrote:...any way i can use it just for that particular tau?
A better option then would be to use the upgreek package to have access to upright Greek letters at will:
Code: Select all
\documentclass{article}
\usepackage{upgreek}
\begin{document}
$\tau$
$\uptau$
\end{document}