Math & ScienceCalligraphic Symbols with Subscripts

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
andreasam
Posts: 4
Joined: Sun Aug 14, 2011 1:06 am

Calligraphic Symbols with Subscripts

Post by andreasam »

I'm trying to get curly letters using \mathcal
e.g. \mathcal{F}
this works perfectly well but If I am trying to add a subscript to F, i am getting a > as the subscript.

I've tried both \mathcal{F}_i and \mathcal{f_i}

Any help would be most welcomed, thank you

Recommended reading 2024:

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

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

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Re: Calligraphic Symbols with Subscripts

Post by Stefan Kottwitz »

Hi,

$\mathcal{F}_i$ works well for me. The unexpected > appears only with $\mathcal{F_i}$.

Stefan
LaTeX.org admin
andreasam
Posts: 4
Joined: Sun Aug 14, 2011 1:06 am

Calligraphic Symbols with Subscripts

Post by andreasam »

I hear you that it is working for you but it is not working for me at all.
Could there be another reason why mine is not working?

I'm using MikTex 2.9.

And these are not working:-

Code: Select all

$\mathcal{F}_i$
$\mathcal{F}_{ni} $
$\mathcal{L} \subseteq \mathcal{F}_a $
Along with a few more very similar
Last edited by localghost on Sun Aug 21, 2011 10:59 am, edited 2 times in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Calligraphic Symbols with Subscripts

Post by Stefan Kottwitz »

andreasam wrote:Could there be another reason why mine is not working?
Yes, of course. It could be a package in your document preamble which is not compatible, or your math font. You could post your preamble here. The best would be if you would post a complete small document which shows the problem. The we can test that to find the cause, and we don't need to guess.

Stefan
LaTeX.org admin
andreasam
Posts: 4
Joined: Sun Aug 14, 2011 1:06 am

Re: Calligraphic Symbols with Subscripts

Post by andreasam »

Hi Stephan,

I have uploaded the file with this post.

There actually are no packages used in the file as I am building my final documents in sections. So currently it is a plain tex file.

Thanks for your help so far.

Andreasa
Attachments
test.tex
(3.39 KiB) Downloaded 384 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Calligraphic Symbols with Subscripts

Post by Stefan Kottwitz »

In that case you could fix it by adding curly braces around \mathcal{...}, before the subscript

Code: Select all

\documentstyle[11pt]{article}
\begin{document}
 $ L ={\mathcal{F}}_i$ 
\end{document}
Stefan
LaTeX.org admin
andreasam
Posts: 4
Joined: Sun Aug 14, 2011 1:06 am

Re: Calligraphic Symbols with Subscripts

Post by andreasam »

Thank you.

Another solution is to change documentstyle to documentclass
Post Reply