MiKTeX and proTeXt ⇒ Environment thebibliography not defined
Environment thebibliography not defined
I use Xp and the current Miktex 2.7. As editor i use TexnicCenter.
Here is a minimal example of my Tex File:
\documentclass[addressstd,a4paper,10pt]{dinbrief}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage{lmodern}
\usepackage{graphicx}
\begin{document}
\begin{letter}
\subject{\bf A short introduction}
\opening{}
\textbf{Example}\\
\\
This is an example text wit a citation \cite{Schwartz1980}.
\end{letter}
\bibliography{Histon}
\bibliographystyle{plain}
\end{document}
well.. if i compile this i get the latex error:
Environment thebibliography is not defined.
Any idea?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Environment thebibliography not defined
this thebibliography environment is defined by classes, the dinbrief class does not define it. You could use a different class or an additional package or copy the environment code from a class like article. dinbrief just doesn't support it.
Stefan