4

When a function has a rather complex set of parameters, the function identifier (usually simply f), gets dwarfed by the parentheses and the parameters inside of them: function identifiers

As you can see in the red circle, the "f" looks more like a factor, than the function name. The way how the function is displayed in the blue circle is fine. I used the same code, basically, for both function names (simplified code):

\( f\left(\xi_{n,j}\right) \)

and

\( f(x) \)

Now, is there a way how to make the function identifier more "prominent", so it does not look like a factor to a parenthesis, but something more important I guess?

yo'
  • 51,322
polemon
  • 3,555
  • 4
  • 32
  • 42
  • 2
    There's no need to grow the size of the parentheses in the case at hand: f(\xi_{n,j})(x_{n,j}-x_{n,j-1}) is just what's needed. – egreg May 03 '12 at 14:05
  • @egreg yeah, but the idea is, to grow the size of "f". It's a function identifier, and to my understanding, that one should always be at the same size as the paramteres. my idea was simply to somehow increase the font size for the "f" or something. – polemon May 04 '12 at 16:38

2 Answers2

7

I think this is due to \left( adding some horizontal space. Compare with:

\[
   f\left(x^2 \right)
\]
\[
   f\Bigl(x^2\Bigr)
\]
\[
   f(x)
\]
7

This problem has been discussed in Spacing around \left and \right. To solve it, you may use the mleftright package of Heiko Oberdiek.

Michel Fioc
  • 1,257
  • 9
  • 14