Math & ScienceTau variations

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
couperc
Posts: 9
Joined: Fri Apr 09, 2010 3:31 pm

Tau variations

Post by couperc »

Hi

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

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Tau variations

Post by gmedina »

Hi,

try the kpfonts:

Code: Select all

\documentclass{article}
\usepackage{kpfonts}

\begin{document}

$\tau$

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
couperc
Posts: 9
Joined: Fri Apr 09, 2010 3:31 pm

Re: Tau variations

Post by couperc »

Will this affect the whole document?

any way i can use it just for that particular tau?
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Tau variations

Post by gmedina »

couperc wrote:Will this affect the whole document?..
Yes, it will.
couperc wrote:...any way i can use it just for that particular tau?
No, you cannot, at least not if you use the kpfonts package.

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}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply