Math & Science ⇒ Integration issue
Integration issue
I'm new to latex and after ages of reasearching i can't seem to find out how to have an even format, heres the picture: Now the circle intergral is somewhat too small. Is there a way to make it larger?
Here is the line:
{\oint} \vec{E} \cdot \mathrm{d}\vec{A} &=& \frac{Q}{\epsilon_{0}}
Edit by localghost: Preferably no external links (see Board Rules). Attachments go onto the forum server where possible.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Integration issue
please do always accompany your posts (according to the Board Rules) with complete, compilable and minimal code; in other words, with a minimal working example.
In your case, you could use \displaystyle; compare the following expressions:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$ \oint \vec{E} \cdot \mathrm{d}\vec{A} = \frac{Q}{\epsilon_{0}}$
$\displaystyle \oint \vec{E} \cdot \mathrm{d}\vec{A} = \frac{Q}{\epsilon_{0}}$
\end{document}