Hi,

Originally Posted by
spider865
First i would like to change font size
only one word in my text. How can I do that? For example, I have a sentence: "I love Math

" word "I" and "Math" are normal size, but love is bigger than I and Math.
This code
Code:
You {\Huge love} Math. gives
(\Huge can be replaced by \huge, \LARGE, \Large or \large...)
Second question is about eumerate tables in Latex. In standard when i put table in text i have Table 1. i would like to change to Table B.1. so I would like to have the letter.dot.number.dot (not number.dot as standard )
If you want "the letter" to always be a B you can use this :
Code:
\renewcommand{\thetable}{B.\arabic{table}} If the letter B refers to, say, the current section then
Code:
\renewcommand{\thetable}{\Alph{section}.\arabic{table}} is better. (Help On LaTeX Counters)