get emacs to automatically use biber instead of bibtexWrong autodetection of biblatex backendBiblatex with...
Do I have a twin with permutated remainders?
Why is consensus so controversial in Britain?
What typically incentivizes a professor to change jobs to a lower ranking university?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
Equivalence principle before Einstein
Why do falling prices hurt debtors?
Why Is Death Allowed In the Matrix?
Is a conference paper whose proceedings will be published in IEEE Xplore counted as a publication?
Why don't electron-positron collisions release infinite energy?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
What is the word for reserving something for yourself before others do?
Which models of the Boeing 737 are still in production?
What's the point of deactivating Num Lock on login screens?
What defenses are there against being summoned by the Gate spell?
Is it unprofessional to ask if a job posting on GlassDoor is real?
Today is the Center
Modeling an IP Address
How is it possible to have an ability score that is less than 3?
Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.
Why is 150k or 200k jobs considered good when there's 300k+ births a month?
Is it important to consider tone, melody, and musical form while writing a song?
Have astronauts in space suits ever taken selfies? If so, how?
The Clique vs. Independent Set Problem
What's the output of a record cartridge playing an out-of-speed record
get emacs to automatically use biber instead of bibtex
Wrong autodetection of biblatex backendBiblatex with Biber: Configuring my editor to avoid undefined citationsCustomising emacs to use biblatex-biber instead of bibtexProcessing a BibTeX database based on entry typebiblatex-chicago does not run biber automatically in EmacsCustomising emacs to use biblatex-biber instead of bibtexIs there an ebib-like bibliography manager for emacs designed for biblatex?biblatex messing up citation entry with lots of authorsBiblatex-apa style shouldn't show issue number in references for journal publications with doiBibliography in LaTeX with Biblatex and Biber as backendCiting from an Encyclopedia with sub voceOne cite crash allbiber mangling author namesbiblatex, biber, how to create a loop to printbibliography year after year from xxxx to yyyy?Biblatex doesn't recognize the journal's issue number when filled by a non-numeric value
I was reading the question titled Customizing emacs to use biblatex-biber instead of bibtex. In that question, user @PLK mentions that as of auctex 11.87, auctex should automatically check if you are using biblatex and if so, switch to using biber. I have auctex 11.87 installed and running, but I am not getting this automatic switching behavior.
Say I have two files (borrowed from this question).
test.tex
documentclass{article}
usepackage[backend=biber]{biblatex}
addbibresource{test.bib}
defbibheading{bibliography}{}
begin{document}
nocite{*}
subsection*{Journal Publications:}
printbibliography[type=article]
subsection*{Conference Publications:}
printbibliography[type=inproceedings]
end{document}
and test.bib
@ARTICLE{abc,
author = {A Author},
title = {the article title},
journal = {the journal},
year = {2012},
volume = {1},
pages = {1--2},
number = {1},
month = {1},
doi = {1234/5678}
}
@INPROCEEDINGS{def,
author = {A Author},
title = {the proceeding title},
journal = {the conference},
year = {2012},
volume = {1},
pages = {11--12},
number = {1},
month = {1},
doi = {5678/1234}
}
If I run the following commands:
pdflatex test.tex
biber test
pdflatex test.tex
I end up with a properly processed document. In emacs, when I press C-c C-c and select the BibTeX command, emacs runs bibtex test instead of biber test. I am then greeted with errors about no citation bibdata or bibstyle commands. My bibtex-dialect variable is automatically getting set to biblatex, LaTeX-biblatex-use-Biber is set to t, TeX-command-Biber is set to Biber, but for some reason TeX-command-BibTex variable is still set to BibTeX. Should this automatically get changed to Biber? Do I have to set it using a local variable? Is this a bug, or am I doing something wrong?
EDIT
According to this page in the AUCTeX 11.87 manual:
In case you use biblatex in a document, AUCTeX switches from BibTeX to Biber for bibliography processing.
So I feel like this automatic switch should already be happening.
biblatex emacs auctex biber
add a comment |
I was reading the question titled Customizing emacs to use biblatex-biber instead of bibtex. In that question, user @PLK mentions that as of auctex 11.87, auctex should automatically check if you are using biblatex and if so, switch to using biber. I have auctex 11.87 installed and running, but I am not getting this automatic switching behavior.
Say I have two files (borrowed from this question).
test.tex
documentclass{article}
usepackage[backend=biber]{biblatex}
addbibresource{test.bib}
defbibheading{bibliography}{}
begin{document}
nocite{*}
subsection*{Journal Publications:}
printbibliography[type=article]
subsection*{Conference Publications:}
printbibliography[type=inproceedings]
end{document}
and test.bib
@ARTICLE{abc,
author = {A Author},
title = {the article title},
journal = {the journal},
year = {2012},
volume = {1},
pages = {1--2},
number = {1},
month = {1},
doi = {1234/5678}
}
@INPROCEEDINGS{def,
author = {A Author},
title = {the proceeding title},
journal = {the conference},
year = {2012},
volume = {1},
pages = {11--12},
number = {1},
month = {1},
doi = {5678/1234}
}
If I run the following commands:
pdflatex test.tex
biber test
pdflatex test.tex
I end up with a properly processed document. In emacs, when I press C-c C-c and select the BibTeX command, emacs runs bibtex test instead of biber test. I am then greeted with errors about no citation bibdata or bibstyle commands. My bibtex-dialect variable is automatically getting set to biblatex, LaTeX-biblatex-use-Biber is set to t, TeX-command-Biber is set to Biber, but for some reason TeX-command-BibTex variable is still set to BibTeX. Should this automatically get changed to Biber? Do I have to set it using a local variable? Is this a bug, or am I doing something wrong?
EDIT
According to this page in the AUCTeX 11.87 manual:
In case you use biblatex in a document, AUCTeX switches from BibTeX to Biber for bibliography processing.
So I feel like this automatic switch should already be happening.
biblatex emacs auctex biber
AUCTeX 11.88 will be able to automatically decide whether usingbiberorbibtexlooking atbiblatexload options.
– giordano
Aug 20 '13 at 15:56
Do you have the lines(setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil)in your.emacs?
– giordano
Aug 20 '13 at 16:08
I have the first two, but not theTeX-masterline. Adding it makes no difference to the behavior. I just realized that I had a small mistake in my.emacs. Fixing that, I now see that AUCTeX 11.87 has added aBibercommand to theTeX-command-list. UsingC-c C-cand choosingBiberinstead ofBibTeXwill allow the document to be correctly processed. I still feel like either the 11.87 documentation is slightly misleading, or I'm still doing something wrong.
– jarvisschultz
Aug 20 '13 at 16:19
Yes, theTeX-master-fileisn't really important in this case, the only fundamental option isTeX-parse-self, which enables parsing. When parsing is activated, AUCTeX 11.87 will prompt forBiberorBibTexdepending on the value ofLaTeX-biblatex-use-Biber, but won't be able to automatically decide which backend is to be used, you have always to adapt the value ofLaTeX-biblatex-use-Biber. As I already said, next AUCTeX version will have the ability to choose the right backend.
– giordano
Aug 20 '13 at 16:25
Excellent thanks for your help! It sounds like I was just reading a bit too much into the documentation.
– jarvisschultz
Aug 20 '13 at 16:31
add a comment |
I was reading the question titled Customizing emacs to use biblatex-biber instead of bibtex. In that question, user @PLK mentions that as of auctex 11.87, auctex should automatically check if you are using biblatex and if so, switch to using biber. I have auctex 11.87 installed and running, but I am not getting this automatic switching behavior.
Say I have two files (borrowed from this question).
test.tex
documentclass{article}
usepackage[backend=biber]{biblatex}
addbibresource{test.bib}
defbibheading{bibliography}{}
begin{document}
nocite{*}
subsection*{Journal Publications:}
printbibliography[type=article]
subsection*{Conference Publications:}
printbibliography[type=inproceedings]
end{document}
and test.bib
@ARTICLE{abc,
author = {A Author},
title = {the article title},
journal = {the journal},
year = {2012},
volume = {1},
pages = {1--2},
number = {1},
month = {1},
doi = {1234/5678}
}
@INPROCEEDINGS{def,
author = {A Author},
title = {the proceeding title},
journal = {the conference},
year = {2012},
volume = {1},
pages = {11--12},
number = {1},
month = {1},
doi = {5678/1234}
}
If I run the following commands:
pdflatex test.tex
biber test
pdflatex test.tex
I end up with a properly processed document. In emacs, when I press C-c C-c and select the BibTeX command, emacs runs bibtex test instead of biber test. I am then greeted with errors about no citation bibdata or bibstyle commands. My bibtex-dialect variable is automatically getting set to biblatex, LaTeX-biblatex-use-Biber is set to t, TeX-command-Biber is set to Biber, but for some reason TeX-command-BibTex variable is still set to BibTeX. Should this automatically get changed to Biber? Do I have to set it using a local variable? Is this a bug, or am I doing something wrong?
EDIT
According to this page in the AUCTeX 11.87 manual:
In case you use biblatex in a document, AUCTeX switches from BibTeX to Biber for bibliography processing.
So I feel like this automatic switch should already be happening.
biblatex emacs auctex biber
I was reading the question titled Customizing emacs to use biblatex-biber instead of bibtex. In that question, user @PLK mentions that as of auctex 11.87, auctex should automatically check if you are using biblatex and if so, switch to using biber. I have auctex 11.87 installed and running, but I am not getting this automatic switching behavior.
Say I have two files (borrowed from this question).
test.tex
documentclass{article}
usepackage[backend=biber]{biblatex}
addbibresource{test.bib}
defbibheading{bibliography}{}
begin{document}
nocite{*}
subsection*{Journal Publications:}
printbibliography[type=article]
subsection*{Conference Publications:}
printbibliography[type=inproceedings]
end{document}
and test.bib
@ARTICLE{abc,
author = {A Author},
title = {the article title},
journal = {the journal},
year = {2012},
volume = {1},
pages = {1--2},
number = {1},
month = {1},
doi = {1234/5678}
}
@INPROCEEDINGS{def,
author = {A Author},
title = {the proceeding title},
journal = {the conference},
year = {2012},
volume = {1},
pages = {11--12},
number = {1},
month = {1},
doi = {5678/1234}
}
If I run the following commands:
pdflatex test.tex
biber test
pdflatex test.tex
I end up with a properly processed document. In emacs, when I press C-c C-c and select the BibTeX command, emacs runs bibtex test instead of biber test. I am then greeted with errors about no citation bibdata or bibstyle commands. My bibtex-dialect variable is automatically getting set to biblatex, LaTeX-biblatex-use-Biber is set to t, TeX-command-Biber is set to Biber, but for some reason TeX-command-BibTex variable is still set to BibTeX. Should this automatically get changed to Biber? Do I have to set it using a local variable? Is this a bug, or am I doing something wrong?
EDIT
According to this page in the AUCTeX 11.87 manual:
In case you use biblatex in a document, AUCTeX switches from BibTeX to Biber for bibliography processing.
So I feel like this automatic switch should already be happening.
biblatex emacs auctex biber
biblatex emacs auctex biber
edited Apr 13 '17 at 12:35
Community♦
1
1
asked Aug 20 '13 at 15:48
jarvisschultzjarvisschultz
8517
8517
AUCTeX 11.88 will be able to automatically decide whether usingbiberorbibtexlooking atbiblatexload options.
– giordano
Aug 20 '13 at 15:56
Do you have the lines(setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil)in your.emacs?
– giordano
Aug 20 '13 at 16:08
I have the first two, but not theTeX-masterline. Adding it makes no difference to the behavior. I just realized that I had a small mistake in my.emacs. Fixing that, I now see that AUCTeX 11.87 has added aBibercommand to theTeX-command-list. UsingC-c C-cand choosingBiberinstead ofBibTeXwill allow the document to be correctly processed. I still feel like either the 11.87 documentation is slightly misleading, or I'm still doing something wrong.
– jarvisschultz
Aug 20 '13 at 16:19
Yes, theTeX-master-fileisn't really important in this case, the only fundamental option isTeX-parse-self, which enables parsing. When parsing is activated, AUCTeX 11.87 will prompt forBiberorBibTexdepending on the value ofLaTeX-biblatex-use-Biber, but won't be able to automatically decide which backend is to be used, you have always to adapt the value ofLaTeX-biblatex-use-Biber. As I already said, next AUCTeX version will have the ability to choose the right backend.
– giordano
Aug 20 '13 at 16:25
Excellent thanks for your help! It sounds like I was just reading a bit too much into the documentation.
– jarvisschultz
Aug 20 '13 at 16:31
add a comment |
AUCTeX 11.88 will be able to automatically decide whether usingbiberorbibtexlooking atbiblatexload options.
– giordano
Aug 20 '13 at 15:56
Do you have the lines(setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil)in your.emacs?
– giordano
Aug 20 '13 at 16:08
I have the first two, but not theTeX-masterline. Adding it makes no difference to the behavior. I just realized that I had a small mistake in my.emacs. Fixing that, I now see that AUCTeX 11.87 has added aBibercommand to theTeX-command-list. UsingC-c C-cand choosingBiberinstead ofBibTeXwill allow the document to be correctly processed. I still feel like either the 11.87 documentation is slightly misleading, or I'm still doing something wrong.
– jarvisschultz
Aug 20 '13 at 16:19
Yes, theTeX-master-fileisn't really important in this case, the only fundamental option isTeX-parse-self, which enables parsing. When parsing is activated, AUCTeX 11.87 will prompt forBiberorBibTexdepending on the value ofLaTeX-biblatex-use-Biber, but won't be able to automatically decide which backend is to be used, you have always to adapt the value ofLaTeX-biblatex-use-Biber. As I already said, next AUCTeX version will have the ability to choose the right backend.
– giordano
Aug 20 '13 at 16:25
Excellent thanks for your help! It sounds like I was just reading a bit too much into the documentation.
– jarvisschultz
Aug 20 '13 at 16:31
AUCTeX 11.88 will be able to automatically decide whether using
biber or bibtex looking at biblatex load options.– giordano
Aug 20 '13 at 15:56
AUCTeX 11.88 will be able to automatically decide whether using
biber or bibtex looking at biblatex load options.– giordano
Aug 20 '13 at 15:56
Do you have the lines
(setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil) in your .emacs?– giordano
Aug 20 '13 at 16:08
Do you have the lines
(setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil) in your .emacs?– giordano
Aug 20 '13 at 16:08
I have the first two, but not the
TeX-master line. Adding it makes no difference to the behavior. I just realized that I had a small mistake in my .emacs. Fixing that, I now see that AUCTeX 11.87 has added a Biber command to the TeX-command-list. Using C-c C-c and choosing Biber instead of BibTeX will allow the document to be correctly processed. I still feel like either the 11.87 documentation is slightly misleading, or I'm still doing something wrong.– jarvisschultz
Aug 20 '13 at 16:19
I have the first two, but not the
TeX-master line. Adding it makes no difference to the behavior. I just realized that I had a small mistake in my .emacs. Fixing that, I now see that AUCTeX 11.87 has added a Biber command to the TeX-command-list. Using C-c C-c and choosing Biber instead of BibTeX will allow the document to be correctly processed. I still feel like either the 11.87 documentation is slightly misleading, or I'm still doing something wrong.– jarvisschultz
Aug 20 '13 at 16:19
Yes, the
TeX-master-file isn't really important in this case, the only fundamental option is TeX-parse-self, which enables parsing. When parsing is activated, AUCTeX 11.87 will prompt for Biber or BibTex depending on the value of LaTeX-biblatex-use-Biber, but won't be able to automatically decide which backend is to be used, you have always to adapt the value of LaTeX-biblatex-use-Biber. As I already said, next AUCTeX version will have the ability to choose the right backend.– giordano
Aug 20 '13 at 16:25
Yes, the
TeX-master-file isn't really important in this case, the only fundamental option is TeX-parse-self, which enables parsing. When parsing is activated, AUCTeX 11.87 will prompt for Biber or BibTex depending on the value of LaTeX-biblatex-use-Biber, but won't be able to automatically decide which backend is to be used, you have always to adapt the value of LaTeX-biblatex-use-Biber. As I already said, next AUCTeX version will have the ability to choose the right backend.– giordano
Aug 20 '13 at 16:25
Excellent thanks for your help! It sounds like I was just reading a bit too much into the documentation.
– jarvisschultz
Aug 20 '13 at 16:31
Excellent thanks for your help! It sounds like I was just reading a bit too much into the documentation.
– jarvisschultz
Aug 20 '13 at 16:31
add a comment |
2 Answers
2
active
oldest
votes
AUCTeX uses bibtex as default bibliography processor. If one activates parsing of LaTeX documents setting the variable TeX-parse-self to t, in source files with an explicit usepackage{biblatex} line AUCTeX prompts for biber or bibtex processor depending on the value of the variable LaTeX-biblatex-use-Biber, which defaults to t. But until version 11.87, AUCTeX isn't able to automatically choose the bibliography processor, which is set in a LaTeX document with the backend load option of the biblatex package.
Starting from version 11.88, to be released in the next weeks or few months, AUCTeX will look at biblatex load options to automatically choose between biber and bibtex. In this version, the variable LaTeX-biblatex-use-Biber will be removed since it will be no more needed.
add a comment |
Note that if usepackage{biblatex} is written in different lines as, e.g.,
usepackage[
backend=biber,
style=numeric,
sorting=none
]
{biblatex}
AUCTeX will not notice it and leaves LaTeX-biblatex-use-Biber false.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f129217%2fget-emacs-to-automatically-use-biber-instead-of-bibtex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
AUCTeX uses bibtex as default bibliography processor. If one activates parsing of LaTeX documents setting the variable TeX-parse-self to t, in source files with an explicit usepackage{biblatex} line AUCTeX prompts for biber or bibtex processor depending on the value of the variable LaTeX-biblatex-use-Biber, which defaults to t. But until version 11.87, AUCTeX isn't able to automatically choose the bibliography processor, which is set in a LaTeX document with the backend load option of the biblatex package.
Starting from version 11.88, to be released in the next weeks or few months, AUCTeX will look at biblatex load options to automatically choose between biber and bibtex. In this version, the variable LaTeX-biblatex-use-Biber will be removed since it will be no more needed.
add a comment |
AUCTeX uses bibtex as default bibliography processor. If one activates parsing of LaTeX documents setting the variable TeX-parse-self to t, in source files with an explicit usepackage{biblatex} line AUCTeX prompts for biber or bibtex processor depending on the value of the variable LaTeX-biblatex-use-Biber, which defaults to t. But until version 11.87, AUCTeX isn't able to automatically choose the bibliography processor, which is set in a LaTeX document with the backend load option of the biblatex package.
Starting from version 11.88, to be released in the next weeks or few months, AUCTeX will look at biblatex load options to automatically choose between biber and bibtex. In this version, the variable LaTeX-biblatex-use-Biber will be removed since it will be no more needed.
add a comment |
AUCTeX uses bibtex as default bibliography processor. If one activates parsing of LaTeX documents setting the variable TeX-parse-self to t, in source files with an explicit usepackage{biblatex} line AUCTeX prompts for biber or bibtex processor depending on the value of the variable LaTeX-biblatex-use-Biber, which defaults to t. But until version 11.87, AUCTeX isn't able to automatically choose the bibliography processor, which is set in a LaTeX document with the backend load option of the biblatex package.
Starting from version 11.88, to be released in the next weeks or few months, AUCTeX will look at biblatex load options to automatically choose between biber and bibtex. In this version, the variable LaTeX-biblatex-use-Biber will be removed since it will be no more needed.
AUCTeX uses bibtex as default bibliography processor. If one activates parsing of LaTeX documents setting the variable TeX-parse-self to t, in source files with an explicit usepackage{biblatex} line AUCTeX prompts for biber or bibtex processor depending on the value of the variable LaTeX-biblatex-use-Biber, which defaults to t. But until version 11.87, AUCTeX isn't able to automatically choose the bibliography processor, which is set in a LaTeX document with the backend load option of the biblatex package.
Starting from version 11.88, to be released in the next weeks or few months, AUCTeX will look at biblatex load options to automatically choose between biber and bibtex. In this version, the variable LaTeX-biblatex-use-Biber will be removed since it will be no more needed.
answered Aug 20 '13 at 16:42
giordanogiordano
7,59621943
7,59621943
add a comment |
add a comment |
Note that if usepackage{biblatex} is written in different lines as, e.g.,
usepackage[
backend=biber,
style=numeric,
sorting=none
]
{biblatex}
AUCTeX will not notice it and leaves LaTeX-biblatex-use-Biber false.
add a comment |
Note that if usepackage{biblatex} is written in different lines as, e.g.,
usepackage[
backend=biber,
style=numeric,
sorting=none
]
{biblatex}
AUCTeX will not notice it and leaves LaTeX-biblatex-use-Biber false.
add a comment |
Note that if usepackage{biblatex} is written in different lines as, e.g.,
usepackage[
backend=biber,
style=numeric,
sorting=none
]
{biblatex}
AUCTeX will not notice it and leaves LaTeX-biblatex-use-Biber false.
Note that if usepackage{biblatex} is written in different lines as, e.g.,
usepackage[
backend=biber,
style=numeric,
sorting=none
]
{biblatex}
AUCTeX will not notice it and leaves LaTeX-biblatex-use-Biber false.
answered 10 hours ago
RWRRWR
504
504
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f129217%2fget-emacs-to-automatically-use-biber-instead-of-bibtex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
AUCTeX 11.88 will be able to automatically decide whether using
biberorbibtexlooking atbiblatexload options.– giordano
Aug 20 '13 at 15:56
Do you have the lines
(setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil)in your.emacs?– giordano
Aug 20 '13 at 16:08
I have the first two, but not the
TeX-masterline. Adding it makes no difference to the behavior. I just realized that I had a small mistake in my.emacs. Fixing that, I now see that AUCTeX 11.87 has added aBibercommand to theTeX-command-list. UsingC-c C-cand choosingBiberinstead ofBibTeXwill allow the document to be correctly processed. I still feel like either the 11.87 documentation is slightly misleading, or I'm still doing something wrong.– jarvisschultz
Aug 20 '13 at 16:19
Yes, the
TeX-master-fileisn't really important in this case, the only fundamental option isTeX-parse-self, which enables parsing. When parsing is activated, AUCTeX 11.87 will prompt forBiberorBibTexdepending on the value ofLaTeX-biblatex-use-Biber, but won't be able to automatically decide which backend is to be used, you have always to adapt the value ofLaTeX-biblatex-use-Biber. As I already said, next AUCTeX version will have the ability to choose the right backend.– giordano
Aug 20 '13 at 16:25
Excellent thanks for your help! It sounds like I was just reading a bit too much into the documentation.
– jarvisschultz
Aug 20 '13 at 16:31