mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
7f68b94d8a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8696 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file lyx_sty.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*
|
|
* A number of LaTeX command definitions for various
|
|
* things. The name of this file is a holdover from the
|
|
* days of yore.
|
|
*/
|
|
|
|
#ifndef LYX_STY_H
|
|
#define LYX_STY_H
|
|
|
|
#include <string>
|
|
|
|
///
|
|
extern std::string const lyx_def;
|
|
///
|
|
extern std::string const lyxline_def;
|
|
///
|
|
extern std::string const noun_def;
|
|
///
|
|
extern std::string const lyxarrow_def;
|
|
///
|
|
extern std::string const quotedblbase_def;
|
|
///
|
|
extern std::string const quotesinglbase_def;
|
|
///
|
|
extern std::string const guillemotleft_def;
|
|
///
|
|
extern std::string const guillemotright_def;
|
|
///
|
|
extern std::string const guilsinglleft_def;
|
|
///
|
|
extern std::string const guilsinglright_def;
|
|
///
|
|
extern std::string const paragraphleftindent_def;
|
|
///
|
|
extern std::string const floatingfootnote_def;
|
|
///
|
|
extern std::string const boldsymbol_def;
|
|
///
|
|
extern std::string const binom_def;
|
|
///
|
|
extern std::string const mathcircumflex_def;
|
|
///
|
|
extern std::string const tabularnewline_def;
|
|
///
|
|
extern std::string const lyxgreyedout_def;
|
|
///
|
|
extern std::string const lyxdot_def;
|
|
|
|
#endif // LYX_STY_H
|