does anyone know what do with this:
I've exported a bibliography from Citavi with a specific style I've defined.
Q 1: Do I need to adapt this style in Bibtex or is it exported with this file and defined Citavi style?
Export seems to have worked fine.
But whenever I try to compile the file, I get this error message by Texstudio:
From what I've read so far, I may need to do something with biber, but I don't know where to find it. Under the "Configure TexStudio -> Commands -> Biber", I entered the supposed name where the system can find it:Couldn't start default compiler:PdfLatex:pdflatex.exe-synctex== 1-interaction=nonstopmode "[name of file]".tex
Doesn't help."C:/Program Files/MiKTeX 2.9/tpm/packages/miktex-biber-bin.tpm" %
I also realize there's a certain order in which I need to compile and recompile, but I don't get how to run Bibtex. (It also doesn't work with TexWorks, just nothing happens.)
Q 2: How do I run Bibtex?
Here's my code, which I'm sure is wrong somewhere:
Code: Select all
\documentclass[11pt]{article}
\usepackage{cite} %I don't even want to cite, I only want a bibliography
\title{References}
\author{xx}
\date{Today}
\begin{document}
\maketitle
%This file was created with Citavi 4.4.0.28
@article{Abel.2003,
author = {Abel, Beate},
year = {2003},
title = {English idioms in the first language and second language lexicon: a dual representation approach},
pages = {329--358},
volume = {19},
number = {4},
journal = {Second Language Research},
doi = {10.1191/0267658303sr226oa}
}
[i](tons more references)[/i]
\bibliography{mybib}{YoP} %is there something wrong here? Do I have change "mybib"?
\bibliographystyle{plain}
\end{document}\bibliographystyle{YoP} %<-style I defined in citavi before; I get the same compiling error message when I leave it empty or enter "plain".
$ latex paper transparency bibliography %I realize these probably don't help
$ bibtex paper transparency bibliography %<- name of the file, .bib
$ latex paper transparency bibliography
$ latex paper transparency bibliography
So Q 3: Why do I get this error message and what can I do?
Many thanks in advance!