Math & Science ⇒ character of formule more bigger
character of formule more bigger
i'd want write the formule but the characters are too small...
how can i increase the dimension of character?!?!?
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
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
character of formule more bigger
do you mean the size of a math symbol or of a whole formula? Inside text or inside an equation environment or where?
You could write \Huge, \Large etc. before a formula.
Stefan
character of formule more bigger
\displaystyle
. For example:$ \displaystyle{\sum^5_{n = 1} n^2} $
If, however, you're worried about your brackets being too small, use the
\left
and \right
commands, i.e.$$9 \left( \frac{n^2 - n}{5} \right) $$
character of formule more bigger
$$ ... $$
syntax for display math in LaTeX. Let me quote David Carlisle for reasons why:Regards$$
is TeX primitive syntax, which [...] is hard to redefine (in classic TeX there is no command name which triggers entering or leaving display math).
LaTeX doesn't officially support$$
. The most noticeable failure if you use the syntax is that thefleqn
option will no longer affect the display of the mathematics, it will remain centered rather than being set flush left.
However if you are using\[
it is best to use the amsmath package (it is best to load this package if doing any serious mathematical layout with LaTeX).
\[
is a short form of\begin{displaymath}
which one might expect to act like an un-numbered form of\begin{equation}
. The amsmath package redefines\[
to be\begin{equation*}
which is exactly an un-numbered form of the equation environment as defined by that package. In the core LaTeX definition\[
has the definition
which means that the spacing if used between paragraphs is better than a primitiveCode: Select all
\ifvmode \nointerlineskip \makebox[.6\linewidth]{}% \fi $$
$$
(which causes a blank paragraph just consisting of the indentation and parfillskip glue to be inserted before the display) but it is inconsistent with equation and always uses \abovedisplayskip
rather than\abovedisplayshortskip
. In the AMS versions the spacing is more consistent