mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-19 05:53:35 +00:00
This commit was manufactured by cvs2svn to create branch 'BRANCH_1_3_X'.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@8057 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
eda5f1f7c3
commit
ea353630c3
11
lib/layouts/agums.layout
Normal file
11
lib/layouts/agums.layout
Normal file
@ -0,0 +1,11 @@
|
||||
#% Do not delete the line below; configure depends on this
|
||||
# \DeclareLaTeXClass[aguplus,agums.sty]{article (AGU++) manuscript}
|
||||
# AGUplus manuscript textclass definition file.
|
||||
# Author: Martin Vermeer <martin.vermeer@hut.fi>
|
||||
|
||||
|
||||
Input aguplus.inc
|
||||
|
||||
ClassOptions
|
||||
Other "agums"
|
||||
End
|
29
lib/layouts/db_stdcounters.inc
Normal file
29
lib/layouts/db_stdcounters.inc
Normal file
@ -0,0 +1,29 @@
|
||||
# Author : José Matos <jamatos@lyx.org>
|
||||
|
||||
# This include file contains all the counters that are defined as standard
|
||||
# in docbook LyX layouts.
|
||||
|
||||
Counter
|
||||
Name sect1
|
||||
Within chapter
|
||||
End
|
||||
|
||||
Counter
|
||||
Name sect2
|
||||
Within sect1
|
||||
End
|
||||
|
||||
Counter
|
||||
Name sect3
|
||||
Within sect2
|
||||
End
|
||||
|
||||
Counter
|
||||
Name sect4
|
||||
Within sect3
|
||||
End
|
||||
|
||||
Counter
|
||||
Name sect5
|
||||
Within sect4
|
||||
End
|
41
src/mathed/math_boldsymbolinset.h
Normal file
41
src/mathed/math_boldsymbolinset.h
Normal file
@ -0,0 +1,41 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file math_boldsymbolinset.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
* \author André Pönitz
|
||||
*
|
||||
* Full author contact details are available in file CREDITS.
|
||||
*/
|
||||
|
||||
#ifndef MATH_BOLDSYMBOLINSET_H
|
||||
#define MATH_BOLDSYMBOLINSET_H
|
||||
|
||||
#include "math_nestinset.h"
|
||||
|
||||
|
||||
/// Inset for AMSTeX's \boldsymbol
|
||||
class MathBoldsymbolInset : public MathNestInset {
|
||||
public:
|
||||
///
|
||||
MathBoldsymbolInset();
|
||||
///
|
||||
std::auto_ptr<InsetBase> clone() const;
|
||||
///
|
||||
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
||||
///
|
||||
void draw(PainterInfo & pi, int x, int y) const;
|
||||
///
|
||||
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
|
||||
///
|
||||
void drawT(TextPainter & pi, int x, int y) const;
|
||||
///
|
||||
void validate(LaTeXFeatures & features) const;
|
||||
///
|
||||
void write(WriteStream & os) const;
|
||||
///
|
||||
void infoize(std::ostream & os) const;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user