Possible Duplicate:
Equations, change the font size
How to scale math font only
I am very new to LaTeX. I want all mathematics(i.e. the thing we write inside $...$ and \[...\]) of my document to be shown larger than the other texts. How can I do it?
edit:here is an worked example:
\documentclass[14pt]{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[xetex]{graphicx}
\usepackage{fontspec}
\usepackage[margin=2cm]{geometry}
\author{Adib}
%Defining fonts
\font\e="Times New Roman" at 12pt
\font\lb="SolaimanLipi-Bold:script=beng" at 22pt
\font\b="SolaimanLipi:script=beng" at 14pt
\font\bl="SolaimanLipi-Bold:script=beng" at 14pt
\begin{document}
\title{\lb{অণুসম গণিত}}
\date{}
\maketitle
\b{নাম্বার থিয়োরি ভালোবাসেন কিন্তু কনগ্রুয়েন্স বা অনুসমতা সম্পর্কে ধারণা নেই এমন মানুষ একটিও সম্ভবত এই ধরাধামে খুঁজে পাওয়া যাবে না। কারণ ক্লাসিক্যাল নাম্বার থিয়োরির খুব বড় একটি অংশই যে রয়েছে এই মডুলার এরিথম্যাটিকের দখলে।
এবার ভূমিকা ছেড়ে মূল আলোচনায় আসা যাক। $a$ এবং $b$ সংখ্যা দুটিকে যদি $c$ দ্বারা ভাগ করে একই ভাগশেষ পাওয়া যায় তবে বলা হয়} \bl{$a$ এবং $b$ হচ্ছে $c$ ভাজকের সাপেক্ষে অনুসম বা কনগ্রুয়েন্ট।} \b{কিংবা গণিতের ভাষায় $a\equiv b\; (\bmod\; c)$}
\b{ পড়তে হয়} '\e{$a$ is congruent to $b$ modulo $c$}'
\end{document}




\documentclass[12pt]{article}? – Nasser Jan 28 at 11:4314ptoption for thearticleclass, so you end up with the default 10pt. Using\fontin LaTeX is never a good idea: use the facilities offontspecfor that. – egreg Jan 28 at 12:03