I'm using the LaTeX citation feature with the biblatex-mla style, which provides the commando \autocites for citing multiple sources:
http://mirrors.ctan.org/macros/latex/contrib/biblatex-contrib/biblatex-mla/doc/biblatex-mla.pdf
To fully support biblatex-mla, \headlesscite and the starred versions \autocite*, \parencite* seem to be missing in the parser:
|
private static final String[] CITE_COMMANDS = { |
|
"[cC]ite(alt|alp|author|authorfull|date|num|p|t|text|title|url|year|yearpar)?", |
|
"([aA]|[aA]uto|fnote|foot|footfull|full|no|[nN]ote|[pP]aren|[pP]note|[tT]ext|[sS]mart|super)cite", |
|
"footcitetext", "(block|text)cquote" |
|
}; |
My suggestion is
private static final String[] CITE_COMMANDS = {
"[cC]ite(alt|alp|author|authorfull|date|num|p|t|text|title|url|year|yearpar)?",
"([aA]|[aA]uto|fnote|foot|footfull|full|no|[nN]ote|[pP]aren|[pP]note|[tT]ext|[sS]mart|super)cite([s*]?)",
"footcitetext", "(block|text)cquote"
};
I'm using the LaTeX citation feature with the biblatex-mla style, which provides the commando
\autocitesfor citing multiple sources:http://mirrors.ctan.org/macros/latex/contrib/biblatex-contrib/biblatex-mla/doc/biblatex-mla.pdf
To fully support biblatex-mla,
\headlessciteand the starred versions\autocite*,\parencite*seem to be missing in the parser:jabref/src/main/java/org/jabref/logic/texparser/DefaultLatexParser.java
Lines 35 to 39 in 16d4938
My suggestion is