MiKTeX and proTeXt ⇒ any file with "\usepacke{<anything>}" will not work
any file with "\usepacke{<anything>}" will not work
Now whenever I try to build a file with
\usepackage{<anything>}
The files will not build. Rather, Texniccenter doesn't report any errors, but no DVI, PDF, or PS can be found in the appropriate file.
I told MikTeX to ask me to install missing packages, but it never asks me about it. So, I assume that it is missing the packages I use.
I downloaded the a4wide package manually (using the admin package manager) and tried to build a file with just
\documentclass{article}
\usepackage{a4wide}
\begin{document}
\end{document}
And that didn't work. Also, I can't find some packages that I use on the package manager, such as amsmath, amsthm, subfigure, graphicx, etc.
Any help you can provide would be GREATLY Appreciated.
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
any file with "\usepacke{<anything>}" will not work
what about if you include something to be actually typeset; i.e., something like this:
Code: Select all
\documentclass{article}
\usepackage{a4wide}
\begin{document}
Hi
\end{document}
any file with "\usepacke{<anything>}" will not work
Thanks for the fast reply. No, your suggestion did not work.gmedina wrote:Hi,
what about if you include something to be actually typeset; i.e., something like this:
By the way, I would suggest the geometry package instead of the a4wide package.Code: Select all
\documentclass{article} \usepackage{a4wide} \begin{document} Hi \end{document}
I did try a file of the form
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Hi
\end{document}
Re: any file with "\usepacke{<anything>}" will not work
I had to change the MikTeX settings from
ask me before installing new packages --> install new packages automatically
Frankly, I am not sure why MikTeX didn't ask me to install new packages with the previous setting. Like I said, this all started when I changed from MikTeX 2.6 to 2.9. So, perhaps there is a bug in the 2.9 beta.