Fonts & Character Sets ⇒ Scripted lower-case 'a'
Scripted lower-case 'a'
I'm writing a rather large paper, and I've begun to run out of symbols. Specifically, I need a "new" way to type 'a' in my equations - and I figured that i calligraphed or scripted a would be just the thing. I know that $\mathcal{A}$ would give me an uppercase scripted A, however, I really need it to be a lower case 'a'.
I've looked through 'The Comprehensive LaTeX Symbol List', but have only found a phonetic 'a', which is not really satisfactory.
I would appreciate any advice greatly.
Best regards,
Thomas
PS. I'm unsure if this topic belongs more in the math subforum rather than the font subforum. I apologuize if I have placed it wrongly.
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
Scripted lower-case 'a'
Code: Select all
\documentclass{article}\DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}\begin{document}\[\mathpzc{a}\]\end{document}
Code: Select all
\documentclass{article}\usepackage{calligra}\DeclareMathAlphabet{\mathcalligra}{T1}{calligra}{m}{n}\begin{document}\[\mathcalligra{a}\]\end{document}
Re: Scripted lower-case 'a'
I've tried your suggestions. However, I had hoped for something that had a more pronounced difference with the standard 'a', such that the two could be clearly distinguished. Hmm, maybe I should just think i terms of finding an entirely different symbol.
In any case, thank you frabjous.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Scripted lower-case 'a'
What about lowercase letters in Gothic type provided by amssymb? Also called German type, black letter or Fraktur.thomasTC wrote:[...] However, I had hoped for something that had a more pronounced difference with the standard 'a', such that the two could be clearly distinguished. Hmm, maybe I should just think i terms of finding an entirely different symbol. [...]
Code: Select all
\documentclass[11pt,a4paper]{article}\usepackage[T1]{fontenc}\usepackage[utf8]{inputenc}\usepackage{amsmath}\usepackage{amssymb}\begin{document}\begin{align}a &\ne \mathfrak{a} \\b &\ne \mathfrak{b} \\c &\ne \mathfrak{c}\end{align}\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Scripted lower-case 'a'
My thesis-partner and I finally decided, that we didn't absolutely need it to be lower-case, and went with an upper case 'A' instead using the 'DeclareMathAlphabet' command suggested by frabjous:
Code: Select all
\DeclareMathAlphabet{\sll}{OT1}{pzc}{m}{it}
Again, thank you both for your suggestions. Much appreciated!
-Thomas