GeneralProblem with bibtex

General information and discussion about TeXnicCenter
Post Reply
clarion
Posts: 2
Joined: Tue Sep 04, 2007 6:45 pm

Problem with bibtex

Post by clarion »

Hello,

I'M a Newbie in Latex. I'm using the tecniccenter and do have problems with BiblEx I runs following simple example

file versuch4

Code: Select all

\documentclass[a4paper]{article}

\begin{document}

mal sehen ob zitieren funzt \cite{eins} und \cite{zwei}

\bibliography{literaturneu}
\bibliographystyle{apalike}
\end{document}
file literaturneu.bib

Code: Select all

@book{eins,
author = {Bernd Raichle},
title = {Bib\TeX-Programmierung}
}
@book{zwei,
author = {A.U. Thor},
title = {Das Buch}
}
A set the Project property "using BibTex
Even after hitting F7 and Strg+F7 several times There aren't any references:

This is the content of the logfile:

Code: Select all

This is pdfTeX, Version 3.141592-1.40.4 (MiKTeX 2.6) (preloaded format=pdflatex 2007.8.31)  5 SEP 2007 13:17
entering extended mode
**D:/Promotion/eigene*Texte/paperIAG*Peruzgia/paper_latex/versuch4/versuch4.tex

("D:\Promotion\eigene Texte\paperIAG Peruzgia\paper_latex\versuch4\versuch4.tex
"
LaTeX2e <2005/12/01>
Babel <v3.8g> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman, ngerman, french, loaded.
("C:\Programme\MiKTeX 2.6\tex\latex\base\article.cls"
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
("C:\Programme\MiKTeX 2.6\tex\latex\base\size10.clo"
File: size10.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
) (versuch4.aux)
LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 10.
LaTeX Font Info:    ... okay on input line 10.


LaTeX Warning: Citation `eins' on page 1 undefined on input line 12.


LaTeX Warning: Citation `zwei' on page 1 undefined on input line 12.

(versuch4.bbl

LaTeX Warning: Empty `thebibliography' environment on input line 3.

) [1

{psfonts.map}] (versuch4.aux)

LaTeX Warning: There were undefined references.

 ) 
Here is how much of TeX's memory you used:
 232 strings out of 95295
 2416 string characters out of 1184971
 46012 words of memory out of 1049712
 3478 multiletter control sequences out of 60000
 4553 words of font info for 17 fonts, out of 1000000 for 2000
 14 hyphenation exceptions out of 8191
 23i,4n,21p,228b,107s stack positions out of 5000i,500n,10000p,200000b,32768s
<C:/Programme/MiKTeX 2.6/fonts/type1/bluesky/cm/cmbx10.pfb><C:/Programme/MiKT
eX 2.6/fonts/type1/bluesky/cm/cmbx12.pfb><C:/Programme/MiKTeX 2.6/fonts/type1/b
luesky/cm/cmr10.pfb>
Output written on versuch4.pdf (1 page, 12883 bytes).
PDF statistics:
 18 PDF objects out of 300000 (max. 8388607)
 0 named destinations out of 300000 (max. 131072)
 1 words of extra memory for PDF output out of 65536 (max. 10000000)
What I'm doing wrong?
Last edited by clarion on Wed Sep 05, 2007 2:04 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Andy22
Posts: 16
Joined: Wed Jul 25, 2007 10:11 am

Re: Problem with bibtex

Post by Andy22 »

Seems to be a problem with the filename. Your file is named
"literarneu" but you want LaTeX to use
"literaturneu".

I hope the solution is that simple.
clarion
Posts: 2
Joined: Tue Sep 04, 2007 6:45 pm

Re: Problem with bibtex

Post by clarion »

Hello Andy,

unfortunately the problem is not so simple. I checked the spelling. In my files the spelling is right. I'm schaning my first posting soon.

Greetings
andrea
Andy22
Posts: 16
Joined: Wed Jul 25, 2007 10:11 am

Re: Problem with bibtex

Post by Andy22 »

Ok, then I have some additional hints only.

Is the BibTeX style "apalike" installed in your Miktex directory? If not you can do this with the Package Manager or you can tell Miktex to "install missing packages on the fly" in the Miktex settings.

If the package is missing then the file "versuch4.bbl" should be in your project dir and it should be empty. Then you may view the "versuch4.blg" file which is the bibtex log.

You may also look in the status bar of TeXnicCenter for information different from the logfile.
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Re: Problem with bibtex

Post by localghost »

Avoid characters like "_" in your file path. It is reserved for subscript in math mode. No guarantee that this solves the problem.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
MartinC
Posts: 153
Joined: Wed Jan 17, 2007 10:09 pm

Re: Problem with bibtex

Post by MartinC »

I think that you need to set bibtex in the "Define output profiles" menu. Deselect the "Do not use Bibtex in this profile" option and set the path for Bibtex.

Martin.
Post Reply