I am new to the forum and after searching for a solution for my problem - both on the www and here in the forum - I still cannot figure it out, so I hoped you could help me.
I read all the instructions on what to do before you post, but since my English is not perfect and I am an absolute newby with Latex, I didn't understand everything required, so please forgive me any mistakes.
I am using Texmaker 1.9.1 and Miktex 2.7 on Win XP. I want to handle my bibliography with Bibtex - but somehow I cannot find how to do that, since it does not add the bibliography to the end of the document nor does it find my citations (instead it puts a [?] and puts out the warning: Citation 'first' on page 1 undefined
Here is a MWE. I have the files MWE.tex and MWE.bib. When I run the sequence PDFLaTeX,Bibtex,PDFLaTeX,PDFLaTeX, then no citations work. There is no MWE.bbl file created.
When I try to run LaTeX instead of PDFLaTeX then I get an error: ! Package pdftex.def Error: PDF mode expected, but DVI mode detected!
here the .tex file:
Code: Select all
\documentclass[a4paper,bibtotoc,oneside]{scrbook}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{amsmath,amssymb,amsfonts,amstext}
\usepackage[pdftex]{graphicx}
\setlength{\textheight}{225mm}
\setcounter{secnumdepth}{3} %uncomment this to not display all the subsubsections in the
\setcounter{tocdepth}{3} %table of contents
\begin{document}
\newpage
\tableofcontents\thispagestyle{empty}
\newpage
\setcounter{page}{1}
\chapter{Introduction}
Itse me, mario! \cite{first}
\newpage
\bibliographystyle{abstract}
\bibliography{MWA}
\end{document}
Code: Select all
@article{first,
key ={},
author ={Kurt G{\"o}del},
title ={{\"U}ber formal unentscheidbare {S}{\"a}tze der {P}rincipia {M}athematica und verwandter {S}ysteme {I}}},
booktitle ={},
chapter ={},
edition ={},
editor ={},
howpublished ={},
institution ={},
journal ={Monatshefte f{\"u}r Mathematik und Physik},
month ={},
note ={},
number ={},
organization ={},
pages ={173--198},
publisher ={},
address ={},
school ={},
series ={},
type ={},
volume ={38},
year ={1931},
}
Please help me to find the proper settings and ways to use Bibtex for my literature management. Thank you very much!
Cheers, Sebastian