mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
50a25e9a76
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4288 a592a061-630c-0410-9148-cb99ea01b6c8
54 lines
1.0 KiB
C++
54 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file lyx_sty.h
|
|
* Copyright 1995-2002 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
*
|
|
* A number of LaTeX command definitions for various
|
|
* things. The name of this file is a holdover from the
|
|
* days of yore.
|
|
*
|
|
* \author Lars Gullik Bjornes <larsbj@lyx.org>
|
|
*/
|
|
|
|
#ifndef LYX_STY_H
|
|
#define LYX_STY_H
|
|
|
|
#include "LString.h"
|
|
|
|
///
|
|
extern string const lyx_def;
|
|
///
|
|
extern string const lyxline_def;
|
|
///
|
|
extern string const noun_def;
|
|
///
|
|
extern string const lyxarrow_def;
|
|
///
|
|
extern string const quotedblbase_def;
|
|
///
|
|
extern string const quotesinglbase_def;
|
|
///
|
|
extern string const guillemotleft_def;
|
|
///
|
|
extern string const guillemotright_def;
|
|
///
|
|
extern string const guilsinglleft_def;
|
|
///
|
|
extern string const guilsinglright_def;
|
|
///
|
|
extern string const paragraphleftindent_def;
|
|
///
|
|
extern string const floatingfootnote_def;
|
|
///
|
|
extern string const minipageindent_def;
|
|
///
|
|
extern string const boldsymbol_def;
|
|
///
|
|
extern string const binom_def;
|
|
///
|
|
extern string const mathcircumflex_def;
|
|
|
|
#endif // LYX_STY_H
|