I am learning LaTeX from a book, and I am using TeXnicCenter. The book has a chapter about the graphics package, so I download it and try the commands. But I find that when I use commands like \scalebox and \resizebox, they cannot take effect. Also, the PDF seems to be "dead" after that, i.e. when I make some changes and click "build and view", the PDF remains unchanged. I have tried the graphicx package but the result is the same.
For example, firstly I type
\documentclass[12pt]{article}
\usepackage{amsfonts, amsmath, amsthm, amstext, amssymb, amscd, ulem, array}
\begin{document}
abc
\end{document}
then this produces a pdf with a word 'abc'. At the bottom of TeXnicCenter, I see 0 error, 0 warning, 0 bad box, and 1 page.
Then I change it to
\documentclass[12pt]{article}
\usepackage{amsfonts, amsmath, amsthm, amstext, amssymb, amscd, ulem, array}
\usepackage{graphicx}
\begin{document}
\scalebox{2}{abc}
\end{document}
The same pdf occurs, i.e. no size enlarged. At the bottom of TeXnicCenter, I see 0 error, 0 warning, 0 bad box, and 0 page.
Finally I change it to
\documentclass[12pt]{article}
\usepackage{amsfonts, amsmath, amsthm, amstext, amssymb, amscd, ulem, array}
\usepackage{graphicx}
\begin{document}
\scalebox{2}{efg}
\end{document}
I still see the word 'abc' with the same size. At the bottom of TeXnicCenter, I see 0 error, 0 warning, 0 bad box, and 0 page.
Would any one please help me?
In the output area of the TeXnicCenter, I find the following which is unusual:
"C\User\user\Desktop\myfile\test.aux)pdflatex.exe: GUI framework cannot be initialized."
\documentclass{...}and ending with\end{document}. – Qrrbrbirlbel Mar 16 '13 at 06:40scaleboxyou need to add\usepackage{graphics}in your preamble. Add a compilable code ! – Alain Matthes Mar 16 '13 at 06:52.logfile available somewhere so we can see what problems are happening? – Joseph Wright Mar 16 '13 at 10:15pdflatexon this file from a command line (dos prompt) instead. Then MikTeX will ask for permission to install something. That interface cannot be launched from within TC. – daleif Mar 19 '13 at 12:46