Hello
I'm usind LEd editor and MiKTex 2.7 and I am struggling with writing the bibliography for my thesis. After these steps:
1. Running the main .tex file ( where the page setting, and packages are included, and al the chapters are brought together ) ( F9 in LEd )
2. Running the .bib file ( F6)
3. Running twice the main .tex file
I get -> I couldn't open file name `biblio.aux'
I have no biblio.aux and no .pdf file. What could be the problem?
Thank you
BibTeX, biblatex and biber ⇒ Aux file not find
NEW: TikZ book now 40% off at Amazon.com for a short time.

Aux file not find
Hi,
please save the following simple document as myfile.tex:
Now compile it using:
pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile
(Notice that you run BiBTeX on the file myfile and not on the bibliographical data base testbib.bib). Report any errors/warnings obtained.
please save the following simple document as myfile.tex:
Code: Select all
\begin{filecontents*}{testbib.bib}
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
\end{filecontents*}
\documentclass{article}
\begin{document}
As we can see in \cite{goossens93}...
\bibliographystyle{plain}
\bibliography{testbib}
\end{document}
pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile
(Notice that you run BiBTeX on the file myfile and not on the bibliographical data base testbib.bib). Report any errors/warnings obtained.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Aux file not find
Thank you very much for your reply. I did as indicated, your .tex file works , I got myfile.pdf as I should. Yet when I do the same on my main .tex file I get the following warnings:
1. Overfull \hbox (59.18164pt too wide) in paragraph at line 40--42
[4 <Lang1.jpg>] [5] [6]
2.Underfull \hbox (badness 10000) in paragraph at lines 70--75
[]\OT1/cmr/m/n/12 Speech
3.Underfull \hbox (badness 10000) in paragraph at lines 70--75
[]\OT1/cmr/m/n/12 slightly
4.Underfull \hbox (badness 10000) in paragraph at lines 70--75
[]\OT1/cmr/m/n/12 faster or
3.Underfull \hbox (badness 10000) in paragraph at lines 70--75
I don't know why I get this (the words from above: speech, slightly, faster or) are in a table, but I could see the table just fine in the pdf doc, when I didn't have the bibliography issue ( nor the .bib file and use it). And know it creates my .pdf doc but it won't open it, saying "There was an error opening this document. This file is already open or in use by another application".
Why are those "Overfull" and "Underfull" a pb now, when I fixed the bibliography issue, and it wasn't before ( before I inserted citation and use references from the .bib file )?
Thank you
1. Overfull \hbox (59.18164pt too wide) in paragraph at line 40--42
[4 <Lang1.jpg>] [5] [6]
2.Underfull \hbox (badness 10000) in paragraph at lines 70--75
[]\OT1/cmr/m/n/12 Speech
3.Underfull \hbox (badness 10000) in paragraph at lines 70--75
[]\OT1/cmr/m/n/12 slightly
4.Underfull \hbox (badness 10000) in paragraph at lines 70--75
[]\OT1/cmr/m/n/12 faster or
3.Underfull \hbox (badness 10000) in paragraph at lines 70--75
I don't know why I get this (the words from above: speech, slightly, faster or) are in a table, but I could see the table just fine in the pdf doc, when I didn't have the bibliography issue ( nor the .bib file and use it). And know it creates my .pdf doc but it won't open it, saying "There was an error opening this document. This file is already open or in use by another application".
Why are those "Overfull" and "Underfull" a pb now, when I fixed the bibliography issue, and it wasn't before ( before I inserted citation and use references from the .bib file )?
Thank you
Aux file not find
Hi,
the Overfull \hbox ... message indicates that some material (text, an included graphic, etc.) has exceeded the horizontal space available and will stick out to the right.
On the other side, the Underfull \hbox ... messages indicate that some white space within a box had to stretch more that it was designd to do.
For the Overfull \hbox you should see the material sticking out; the Underfull \hbox effect might not be noticeable at sight. It would help if you can post the actual code that you are using and that produces those wrnings.
the Overfull \hbox ... message indicates that some material (text, an included graphic, etc.) has exceeded the horizontal space available and will stick out to the right.
On the other side, the Underfull \hbox ... messages indicate that some white space within a box had to stretch more that it was designd to do.
For the Overfull \hbox you should see the material sticking out; the Underfull \hbox effect might not be noticeable at sight. It would help if you can post the actual code that you are using and that produces those wrnings.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Aux file not find
Code: Select all
\chapter{Review of the Literature}
\label{ch:review}
bla bla bla
\section{Research on human emotions}
\label{ch:research}
bla bla bla
\subsection{Theories of emotion}
\label{ch:theories}
bla bla bla
\begin{figure}[htbp]
\begin{flushright}
%To include the figure
\includegraphics[width=180mm]{Lang1.jpg}
%The title of the figure
\caption{Lang's arousal-valence map}
\label{img:fig1}
\end{flushright}
\end{figure}
bla bla bla
\begin{table}[ht]
\caption {Summary of human vocal effects, relative to neutral speech} %title
\centering
\begin{tabular}{|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|}
\hline \hline
\scriptsize
& Anger & Happiness & Sadness & Fear & Disgust \\ \hline
Speech Rate & slightly faster & faster or slower & slightly slower & much faster & very much slower\\ \hline
Pitch Average & very much higher & much higher & slightly lower & very much higher & very much lower\\ \hline
Pitch Range & much wider & much wider & slightly narrower & much wider & slightly wider\\ \hline
Intensity & higher & higher & lower & normal & lower\\ \hline
Voice Quality & breathly, chest tone & blaring, breathy & resonant & irregular voicing & grumbled, chest tone \\
\hline
\end{tabular}
\label{table:table1}
\end{table}
\large
Code: Select all
\documentclass[a4paper, 12pt, oneside, paginatitlu]{scrbook}
% Include support for romanian hyphenation (if installed on your system)
\usepackage[romanian,english]{babel}
\usepackage{graphicx}
\usepackage{fullpage}
\usepackage{fancyhdr}
\usepackage{float}
\usepackage{multibib}
\pagestyle{fancyplain}
\renewcommand\chaptermark[1]{\markright{\thechapter\ #1}}
\renewcommand\sectionmark[1]{\markright{\thesection\ #1}}
\renewcommand\subsectionmark[1]{\markright{\thesubsection\ #1}}
\fancyhf{}
\rhead{\fancyplain{} \rightmark}
\lfoot{}
\cfoot{\fancyplain{} \thepage}
\rfoot{}
\fancypagestyle{plain}
%The body of the LaTeX file
\begin{document}
%Including of the title page. See titlepage.tex file
\include{paginatitlu}
\clearpage
\thispagestyle{empty}
\phantom{a}
\vfill
\newpage
\vfill
\addtocounter{page}{-1}
%Set the page numbering to roman
\pagenumbering{roman}
%As in the file abstract.tex the command \chapter* is used, the title has to be inserted manually into the header. See the file abstract.tex for more information.
\rhead{\fancyplain{} \itshape Abstract}
\include{abstrakt}
%Set \rhead back to before defined mode
\rhead{\fancyplain{} \rightmark}
\clearpage
\thispagestyle{empty}
\phantom{a}
\vfill
\newpage
\vfill
\addtocounter{page}{-1}
%Include the table of contents
\tableofcontents
%Include the list of figures and fill up to the end of the page \vfill.
\listoffigures \vfill
\pagebreak
%pagebreak to force the pagenumbering to arabic
\pagebreak
%Change page numbering to arabic
\pagenumbering{arabic}
%Include the chapters
\include{introdu}
\include{LReview}
\bibliographystyle{plain} %(uses file "abbrv.bst") - style
{\bibliography{biblio}} % uses file biblio.bib
\end{document}
First, I apologize for the long code, I cut as much as I could without "losing" info, I say. So, the first code is LReview.tex and the second one is main.tex Basically, latex is not happy with something in LReview.
Thank you
Re: Aux file not find
I just have to say thank you... I found your reply and it was the 15th in a series that actually solved my probs!
Happy holidays...
Happy holidays...