mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
paragraph*
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6185 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cba2f737f1
commit
d06a2364ef
@ -63,16 +63,16 @@ const char * known_math_envs[] = {"equation", "eqnarray", "eqnarray*",
|
|||||||
|
|
||||||
// some ugly stuff
|
// some ugly stuff
|
||||||
ostringstream h_preamble;
|
ostringstream h_preamble;
|
||||||
string h_textclass = "FIXME";
|
string h_textclass = "article";
|
||||||
string h_options = "FIXME";
|
string h_options = "";
|
||||||
string h_language = "FIXME";
|
string h_language = "english";
|
||||||
string h_inputencoding = "FIXME";
|
string h_inputencoding = "latin1";
|
||||||
string h_fontscheme = "FIXME";
|
string h_fontscheme = "default";
|
||||||
string h_graphics = "default";
|
string h_graphics = "default";
|
||||||
string h_paperfontsize = "FIXME";
|
string h_paperfontsize = "default";
|
||||||
string h_spacing = "single";
|
string h_spacing = "single";
|
||||||
string h_papersize = "FIXME";
|
string h_papersize = "default";
|
||||||
string h_paperpackage = "FIXME";
|
string h_paperpackage = "default";
|
||||||
string h_use_geometry = "0";
|
string h_use_geometry = "0";
|
||||||
string h_use_amsmath = "0";
|
string h_use_amsmath = "0";
|
||||||
string h_use_natbib = "0";
|
string h_use_natbib = "0";
|
||||||
@ -82,7 +82,7 @@ string h_secnumdepth = "3";
|
|||||||
string h_tocdepth = "3";
|
string h_tocdepth = "3";
|
||||||
string h_paragraph_separation = "indent";
|
string h_paragraph_separation = "indent";
|
||||||
string h_defskip = "medskip";
|
string h_defskip = "medskip";
|
||||||
string h_quotes_language = "FIXME";
|
string h_quotes_language = "english";
|
||||||
string h_quotes_times = "1";
|
string h_quotes_times = "1";
|
||||||
string h_papercolumns = "1";
|
string h_papercolumns = "1";
|
||||||
string h_papersides = "1";
|
string h_papersides = "1";
|
||||||
@ -177,13 +177,9 @@ bool is_heading(string const & name)
|
|||||||
name == "author" ||
|
name == "author" ||
|
||||||
name == "paragraph" ||
|
name == "paragraph" ||
|
||||||
name == "chapter" ||
|
name == "chapter" ||
|
||||||
name == "chapter*" ||
|
|
||||||
name == "section" ||
|
name == "section" ||
|
||||||
name == "section*" ||
|
|
||||||
name == "subsection" ||
|
name == "subsection" ||
|
||||||
name == "subsection*" ||
|
name == "subsubsection";
|
||||||
name == "subsubsection" ||
|
|
||||||
name == "subsubsection*";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -737,7 +733,12 @@ void parse(Parser & p, ostream & os, unsigned flags, mode_type mode)
|
|||||||
handle_par(os);
|
handle_par(os);
|
||||||
|
|
||||||
else if (is_heading(t.cs())) {
|
else if (is_heading(t.cs())) {
|
||||||
os << "\\layout " << cap(t.cs()) << "\n\n";
|
string name = t.cs();
|
||||||
|
if (p.nextToken().asInput() == "*") {
|
||||||
|
p.getToken();
|
||||||
|
name += "*";
|
||||||
|
}
|
||||||
|
os << "\\layout " << cap(name) << "\n\n";
|
||||||
parse(p, os, FLAG_ITEM, mode);
|
parse(p, os, FLAG_ITEM, mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -784,6 +785,9 @@ void parse(Parser & p, ostream & os, unsigned flags, mode_type mode)
|
|||||||
else if (t.cs() == "&" && mode == TEXT_MODE)
|
else if (t.cs() == "&" && mode == TEXT_MODE)
|
||||||
os << '&';
|
os << '&';
|
||||||
|
|
||||||
|
else if (t.cs() == "pagestyle" && in_preamble)
|
||||||
|
h_paperpagestyle == p.getArg('{','}');
|
||||||
|
|
||||||
else {
|
else {
|
||||||
if (mode == MATH_MODE)
|
if (mode == MATH_MODE)
|
||||||
os << t.asInput();
|
os << t.asInput();
|
||||||
|
Loading…
Reference in New Issue
Block a user