1

I'm using Scrivener to convert multimarkdown to LaTeX and then using TeXshop to typeset my document.This work flow 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. I'm sure there is a syntax that does this but I can't find it.

dustin
  • 18,617
  • 23
  • 99
  • 204
lampShade
  • 111

2 Answers2

2

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}
rgallego
  • 2,112
0

Write those equations directly with latex in your document, MMD will not process anything inside html comments. Just make sure your editor preferences are not ``correcting'' automatically double dashes to em quotes and you'll be fine.

Hellektor
  • 101