Boost Your Equations: How to Make the Integral Sign Larger - Expert Tips

  • Thread starter Thread starter EngWiPy
  • Start date Start date
  • Tags Tags
    Integral Sign
Click For Summary

Discussion Overview

The discussion revolves around the issue of the perceived size of integral signs in LaTeX equations, particularly in relation to other mathematical symbols and terms. Participants explore various methods to adjust the size of integral signs for better visual clarity in both display and inline modes.

Discussion Character

  • Technical explanation
  • Conceptual clarification
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant suggests using the \DeclareMathSizes command in the preamble to redefine the size of objects in different modes.
  • Another participant notes that their integral displays normally without size issues, prompting a question about the specific LaTeX commands being used.
  • A different participant proposes the idea of custom defining a \left\int command to allow the integral sign to expand similarly to rubber-length parentheses.
  • Some participants mention that the appearance of the integral sign may be affected by the placement of limits, suggesting the use of the \limits command to position limits above the integral sign for improved aesthetics.
  • One participant expresses that despite trying the \limits command, the integral still appears small in their case, indicating a subjective experience of the issue.

Areas of Agreement / Disagreement

Participants express differing opinions on the visibility and size of integral signs, with some finding them adequate while others feel they are too small. There is no consensus on a single solution, as various methods are proposed and experiences shared.

Contextual Notes

Participants' suggestions depend on specific LaTeX configurations and personal preferences, which may not universally apply. The effectiveness of proposed solutions may vary based on individual use cases and document settings.

Who May Find This Useful

Individuals working with LaTeX for mathematical typesetting, particularly those interested in improving the visual presentation of integral signs in their documents.

EngWiPy
Messages
1,361
Reaction score
61
Hello,

I know that I am asking too many questions these days, but I really need these helps, and I think this forum can do that.

My problem is: I have equations that when I wrote using Latex, the integral sign seems very small relative to other terms. How can I make it larger?

Thanks in advance
 
Physics news on Phys.org
The best answer I can give you so far is to look into the \DeclareMathSizes command. This needs to go in your preamble, and let's you redefine the size of the object when in display mode, inline text mode, sub/superscript, and nested sub/superscripts.

Code:
%put this in your preamble, and fiddle with the last three parameters for each line
\DeclareMathSizes{10}{18}{12}{8}   % For size 10 text
\DeclareMathSizes{11}{19}{13}{9}   % For size 11 text
\DeclareMathSizes{12}{20}{14}{10}  % For size 12 text

For more info, check out http://en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics#Changing_font_size
 
What are you using for your integral? When I typically use it, it displays a fine, normal size:
[tex] \begin{equation}<br /> \int \sin(x)\,dx = -\cos(x)<br /> \end{equation}<br /> \begin{equation}<br /> \int \frac{1}{x}\,dx = \ln(x)<br /> \end{equation}[/tex]
 
minger said:
What are you using for your integral? When I typically use it, it displays a fine, normal size:
[tex] \begin{equation}<br /> \int \sin(x)\,dx = -\cos(x)<br /> \end{equation}<br /> \begin{equation}<br /> \int \frac{1}{x}\,dx = \ln(x)<br /> \end{equation}[/tex]

What do think about this?

attachment.php?attachmentid=19755&stc=1&d=1247862524.jpg

I am using the \int control sequence.

Regards
 

Attachments

  • untitled.JPG
    untitled.JPG
    5.5 KB · Views: 4,050
It looks perfectly legible to me, both in the forums and in your attachment. You would prefer to see the integral extend above and below the fraction?

I was pondering this, and maybe there's a way to custom design the rubber length parenthesis. You know the commands \left(, \left\[, left\{, \left<, \left., and their \right counterparts? These expand to fit the contents. Maybe if you could custom define a \left\int, the \int sign will rubberband to expand to the right size.

Every time you use a \left command, you need to close it with a \right command. The . is great for doing this if you don't want something to appear on the opposite side.

[tex] \begin{equation}<br /> \begin{split}<br /> g(x) &= \int_0^\infty \left(\frac{ \frac{ \frac{1}{1 + x} }{ 2 + x} }{3 + x}\right) dx\\<br /> &= \int_0^\infty \frac{df(x)}{dx}dx\\<br /> &= \left. f(x) \right|_0^\infty<br /> \end{split}<br /> \end{equation}[/tex]

The first line looks kinda bad, so if the \int could expand in the same way the parenthesis are, it would be great.
 
One problem which I think makes it "look" smaller is the limits.
[tex] \begin{equation}<br /> f(x) = \int_0^1 \sin(x)\,dx<br /> \end{equation}<br /> \begin{equation}<br /> g(x) = \int\limits_0^1 \cos(x)\,dx<br /> \end{equation}[/tex]
Try using the \limits on your \int to put the limits above the integral sign, makes it look better IMHO.
Code:
\begin{equation}
f(x) = \int_0^1 \sin(x)\,dx
\end{equation}
\begin{equation}
g(x) = \int\limits_0^1 \cos(x)\,dx
\end{equation}
 
minger said:
One problem which I think makes it "look" smaller is the limits.
[tex] \begin{equation}<br /> f(x) = \int_0^1 \sin(x)\,dx<br /> \end{equation}<br /> \begin{equation}<br /> g(x) = \int\limits_0^1 \cos(x)\,dx<br /> \end{equation}[/tex]
Try using the \limits on your \int to put the limits above the integral sign, makes it look better IMHO.
Code:
\begin{equation}
f(x) = \int_0^1 \sin(x)\,dx
\end{equation}
\begin{equation}
g(x) = \int\limits_0^1 \cos(x)\,dx
\end{equation}

Good to know that, it is useful in some cases for sure. For my case, it still small even though. Anyway, thanks minger for this information.

Regards
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
8K
  • · Replies 13 ·
Replies
13
Views
5K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 7 ·
Replies
7
Views
1K
  • · Replies 8 ·
Replies
8
Views
4K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K