Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

Is there a possibility to draw large integral signs?

I have found the package bigints but I have the feeling it is not very professional...

Any better idea?

share|improve this question
4  
Could you provide the equation that you would like to typeset? – Christian Lindig Dec 23 '11 at 11:33
4  
Just to make sure you don't confuse inline and display math mode. If you typeset integrals inline they end up smaller than if you typeset them as display math mode, e.g. compare \(\int^b_a\) and \[\int^b_a\]. – N.N. Dec 23 '11 at 11:40
3  
Also, there is to note that \displaystyle can achieve this -> \[ \int \], if you do not want the math to be centered alone on page. Hence using, \( \displaystyle\int \). – night owl Dec 23 '11 at 11:46

1 Answer

up vote 18 down vote accepted

I'm aware of three packages that will let you create larger integral signs: bigints, mtpro2, and relsize.

  • The package bigints provides the following commands to scale up the symbol produced by \int: \bigintssss, \bigintsss, \bigintss, \bigints, and \bigint. Using the default math font family (Computer Modern) and the default text font size of 10pt, these commands (including the "ordinary" \int) produce the following symbols, with a dummy integrand thrown in for scale:

enter image description here

  • The mtpro2 package, which uses Times New Roman-style fonts, provides the commands \xl, \XL, and \XXL (as well as the gynormous, 10cm-tall \XXXL, not shown below) as prefixes to \int. This how the preceding four integrals look when typeset with the mtpro2 package:

enter image description here

By the way, the full mtpro2 package is not free; however, its "lite" subset (which is all that's needed to use the prefix commands \xl, etc.) is free. The package may be downloaded from this site.

  • The command \mathlarger of the relsize package can also produce larger integral symbols. (For multi-step enlargements, the exscale package must be loaded as well.) For a one-step increase in size, you'd type \mathop{\mathlarger{\int}}; for a two-step increase, you'd type \mathop{\mathlarger{\mathlarger{\int}}}, etc.

enter image description here

To my taste, all three sets of results look quite professional. :-)

The bigints package can produce five large variants for \oint as well, but (AFAICT) not for double, triple, surface, slashed, etc. integrals. The mtpro2 package, while providing "only" three large variants of \int (I'm disregarding the \XXXL-prefix variant!), can produce large variants of \iint, \iiint,\oiint, \oiiint, \barint, \slashint, and clockwise- and counterclockwise-oriented line integrals. Similarly, the \mathlarger command of the relsize package can be applied not only to (ordinary) integral symbols but to any other operator symbol.

share|improve this answer
Thank you for those alternatives! – Marco Dec 24 '11 at 7:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.