Thread Closed

Make Integral Sign Larger

 
Share Thread Thread Tools
Jul17-09, 09:53 AM   #1
 

Make Integral Sign Larger


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
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> King Richard III found in 'untidy lozenge-shaped grave'
>> Google Drive sports new view and scan enhancements
>> Researcher admits mistakes in stem cell study
Jul17-09, 12:05 PM   #2
 
The best answer I can give you so far is to look into the \DeclareMathSizes command. This needs to go in your preamble, and lets 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/A...ging_font_size
Jul17-09, 12:49 PM   #3
 
Recognitions:
Science Advisor Science Advisor
What are you using for your integral? When I typically use it, it displays a fine, normal size:
[tex]
\begin{equation}
\int \sin(x)\,dx = -\cos(x)
\end{equation}
\begin{equation}
\int \frac{1}{x}\,dx = \ln(x)
\end{equation}
[/tex]
Jul17-09, 03:30 PM   #4
 

Make Integral Sign Larger


Quote by minger View Post
What are you using for your integral? When I typically use it, it displays a fine, normal size:
[tex]
\begin{equation}
\int \sin(x)\,dx = -\cos(x)
\end{equation}
\begin{equation}
\int \frac{1}{x}\,dx = \ln(x)
\end{equation}
[/tex]
What do think about this?


I am using the \int control sequence.

Regards
Attached Thumbnails
untitled.JPG  
Jul18-09, 08:57 AM   #5
 
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}
\begin{split}
g(x) &= \int_0^\infty \left(\frac{ \frac{ \frac{1}{1 + x} }{ 2 + x} }{3 + x}\right) dx\\
&= \int_0^\infty \frac{df(x)}{dx}dx\\
&= \left. f(x) \right|_0^\infty
\end{split}
\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.
Jul20-09, 07:45 AM   #6
 
Recognitions:
Science Advisor Science Advisor
One problem which I think makes it "look" smaller is the limits.
[tex]
\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}
[/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}
Jul20-09, 02:14 PM   #7
 
Quote by minger View Post
One problem which I think makes it "look" smaller is the limits.
[tex]
\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}
[/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
Thread Closed
Thread Tools


Similar Threads for: Make Integral Sign Larger
Thread Forum Replies
The sign of the integral Calculus & Beyond Homework 7
larger wheels make load easiervto move? General Engineering 7
Proving that larger side corresponds to larger angle Precalculus Mathematics Homework 9
differentiation under the integral sign Calculus & Beyond Homework 4
integral sign error Calculus & Beyond Homework 3