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:
SVN User 2003-11-06 14:50:38 +00:00
parent eda5f1f7c3
commit ea353630c3
3 changed files with 81 additions and 0 deletions

11
lib/layouts/agums.layout Normal file
View 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

View 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

View 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