1

I have the following formula in an align environment

\documentclass[12pt]{article}

\begin{document}
\begin{align}
\hspace*{5mm}w_{c} = \large{\textit{f}} _{w,c} * \frac{log(|C|)}{\int _{w,C}}
\end{align}
\end{document}

But I want that function sign f to be much larger. I can do this with \mathcal, but I cannot manage it with ordinary letters.

4
  • Unrelated: the log should be coded \log.
    – Bernard
    Commented Aug 16, 2019 at 9:43
  • Exactly why? It seems very strange
    – daleif
    Commented Aug 16, 2019 at 9:44
  • @daleif Perhaps it's some kind of operator. Commented Aug 16, 2019 at 10:13
  • @StevenB.Segletes then they are looking for a marked integral symbol (there are several of these) not an f
    – daleif
    Commented Aug 16, 2019 at 12:03

1 Answer 1

1

Put the size specification inside the \textit.

\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
\hspace*{5mm}w_{c} = {\textit{\LARGE f}} _{w,c} * \frac{\log(|C|)}{\int _{w,C}}
\end{align}
\end{document}

enter image description here

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .