1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-05-30 03:37:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file lyx_sty.h
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2002-05-30 03:37:24 +00:00
|
|
|
|
* A number of LaTeX command definitions for various
|
|
|
|
|
* things. The name of this file is a holdover from the
|
|
|
|
|
* days of yore.
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
#ifndef LYX_STY_H
|
|
|
|
|
#define LYX_STY_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
#include <string>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const lyx_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const lyxline_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const noun_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const lyxarrow_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const quotedblbase_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const quotesinglbase_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const guillemotleft_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const guillemotright_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const guilsinglleft_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const guilsinglright_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const paragraphleftindent_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const floatingfootnote_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const boldsymbol_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const binom_def;
|
2002-03-04 11:10:26 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const mathcircumflex_def;
|
2002-09-06 13:41:19 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const tabularnewline_def;
|
2003-07-29 12:20:04 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
extern std::string const lyxgreyedout_def;
|
2004-04-26 11:05:19 +00:00
|
|
|
|
///
|
|
|
|
|
extern std::string const lyxdot_def;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-05-30 03:37:24 +00:00
|
|
|
|
#endif // LYX_STY_H
|