diff --git a/src/factory.C b/src/factory.C index f642f4bd83..04c0db2703 100644 --- a/src/factory.C +++ b/src/factory.C @@ -345,6 +345,12 @@ InsetBase * readInset(LyXLex & lex, Buffer const & buf) // This strange command allows LyX to recognize "natbib" style // citations: citet, citep, Citet etc. + // FIXME: We already have partial support for \\fullcite and + // the various \\footcite commands. We should increase the + // file format number and read these commands here, too. + // Then we should use is_possible_cite_command() in + // src/frontends/controllers/biblio.C to test for valid cite + // commands. if (compare_ascii_no_case(cmdName.substr(0,4), "cite") == 0) { inset.reset(new InsetCitation(inscmd)); } else if (cmdName == "bibitem") { diff --git a/src/tex2lyx/text.C b/src/tex2lyx/text.C index 1a12f96bf6..9f060d2e90 100644 --- a/src/tex2lyx/text.C +++ b/src/tex2lyx/text.C @@ -120,8 +120,9 @@ char const * const known_natbib_commands[] = { "cite", "citet", "citep", * No starred form other than "cite*" known. */ char const * const known_jurabib_commands[] = { "cite", "citet", "citep", -"citealt", "citealp", "citeauthor", "citeyear", "citeyearpar", "fullcite", +"citealt", "citealp", "citeauthor", "citeyear", "citeyearpar", // jurabib commands not (yet) supported by LyX: +// "fullcite", // "footcite", "footcitet", "footcitep", "footcitealt", "footcitealp", // "footciteauthor", "footciteyear", "footciteyearpar", "citefield", "citetitle", "cite*", 0 }; diff --git a/status.14x b/status.14x index b81c1efa3c..4bba820013 100644 --- a/status.14x +++ b/status.14x @@ -56,6 +56,8 @@ What's new - Give a better error message for missing layout include files +- Fix import of \fullcite commands from LaTeX. + * Build/installation: