I have updated my MiKTeX to 2.9. But unfortunately it cannot compile pdf file by either PdfLaTeX and XeLaTeX.
When use XeLaTeX it lag at the begining, and for PdfLaTeX it returns errors:
Command Line: D:\CTEX\MiKTeX\miktex\bin\x64\latex.exe --src --interaction=errorstopmode --synctex=-1 "asd.tex"
Startup Folder: E:\temp\exersice
This is pdfTeX, Version 3.1415926-2.4-1.40.13 (MiKTeX 2.9 64-bit)
entering extended mode
(E:\temp\exersice\asd.tex
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, ... loaded.
(D:\CTEX\MiKTeX\tex\latex\base\article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(D:\CTEX\MiKTeX\tex\latex\base\size10.clo))latex.exe: GUI framework cannot be initialized.
LaTeX failed to create a dvi file.
For possible explanations start the command from the Command Prompt...
My article is
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$$\mathfrak{A}$$
\end{document}
It is sound. So I think there must be some thing wrong with the config but I cannot find any.
amsmathdoesn't provide\mathfrak; that requires\usepackage{amsfonts}. – barbara beeton Feb 28 '13 at 19:00GUI framework cannot be initialized) – Ulrike Fischer Feb 28 '13 at 19:02amsmathis part of "latex required", it's not clear to me why it needs to be installed on the fly; it should already be present in any normal installation. – barbara beeton Feb 28 '13 at 19:06