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.

I'm using Scrivener to convert multimarkdown to Latex and then using texshop to typeset my document.This workflow works great for me except for the fact that I'd like to be able to make certain math symbols bigger i.g. the integral sign. I've tried doing this like this: \bigint,\Biggint, etc but that doesn't work. Im sure there is a syntax that does this but I can't find it.

share|improve this question
See also: tex.stackexchange.com/questions/7462/… – frabjous Jan 5 '11 at 21:03

1 Answer

For integral symbols try \usepackage{bigints}. With the amsmath package, you can change the size of equations with the standard LaTeX resizing commands. Example

\documentclass{article}
\usepackage{amsmath}
\begin{document}
Normal size:
\[
  \sum_{i=0}^n\int_{a_i}^{b_i}f(x)
\]
Large size:
{\large
\[
  \sum_{i=0}^n\int_{a_i}^{b_i}f(x)
\]}
$\sum\int_a^b f(x)$ is normal size and {\huge$\sum\int_a^b f(x)$} is huge size.
\end{document}
share|improve this answer
This works for a "pure" latex document but not for my workflow described above. – lampShade Jan 5 '11 at 21:06

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.