mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
6b49b6b129
This makes the defaults of Inset::inheritFont() and Inset::resetFontEdit() compatible. There is no user visible change except for the Chunk inset which does not produce invalid LaTeX after editing operations anymore. This is the safe version for 2.1.0, for later there are still open questions: - All insets with ResetsFont true should be audited: Is this really needed, or do they show similar editing problems as the Chunk inset? - Does inheritFont() need to be customizable in the layout file as well? - Is resetFontEdit() != !inheritFont() needed at all? I did not use change tracking for the docs, since I updated all existing translations.
136 lines
2.3 KiB
Plaintext
136 lines
2.3 KiB
Plaintext
#\DeclareLyXModule[shapepar.sty]{Custom Paragraph Shapes}
|
|
#DescriptionBegin
|
|
#Provides several paragraph shapes as well as commands to define custom
|
|
#shapes. For a description see LyX's Additional
|
|
#features manual, section 'Non-standard Paragraph Shapes'.
|
|
#DescriptionEnd
|
|
#Author: Uwe Stöhr <uwestoehr@web.de>
|
|
|
|
Format 49
|
|
|
|
AddToPreamble
|
|
% used for custom paragraph shapes
|
|
\IfFileExists{candleshape.def}{%
|
|
\input{candleshape.def}}{}
|
|
\IfFileExists{dropshape.def}{%
|
|
\input{dropshape.def}}{}
|
|
\IfFileExists{TeXshape.def}{%
|
|
\input{TeXshape.def}}{}
|
|
\IfFileExists{triangleshapes.def}{%
|
|
\input{triangleshapes.def}}{}
|
|
|
|
EndPreamble
|
|
|
|
# first the standard shapes
|
|
|
|
Style "CD label"
|
|
LatexType command
|
|
LatexName CDlabel
|
|
Requires shapepar
|
|
Category ShapedParagraphs
|
|
NextNoIndent 1
|
|
Margin Static
|
|
ParIndent MM
|
|
ParSkip 0.4
|
|
Align Block
|
|
LabelType No_Label
|
|
End
|
|
|
|
Style "Circle"
|
|
CopyStyle "CD label"
|
|
LatexName circlepar
|
|
End
|
|
|
|
Style "Diamond"
|
|
CopyStyle "CD label"
|
|
LatexName diamondpar
|
|
End
|
|
|
|
Style "Heart"
|
|
CopyStyle "CD label"
|
|
LatexName heartpar
|
|
End
|
|
|
|
Style "Hexagon"
|
|
CopyStyle "CD label"
|
|
LatexName hexagonpar
|
|
End
|
|
|
|
Style "Nut"
|
|
CopyStyle "CD label"
|
|
LatexName nutpar
|
|
End
|
|
|
|
Style "Square"
|
|
CopyStyle "CD label"
|
|
LatexName squarepar
|
|
End
|
|
|
|
Style "Star"
|
|
CopyStyle "CD label"
|
|
LatexName starpar
|
|
End
|
|
|
|
# now the shapes defined in the .def files
|
|
|
|
Style "Candle"
|
|
CopyStyle "CD label"
|
|
LatexName shapepar{\candle}
|
|
End
|
|
|
|
Style "Drop down"
|
|
CopyStyle "CD label"
|
|
LatexName droppar
|
|
End
|
|
|
|
Style "Drop up"
|
|
CopyStyle "CD label"
|
|
LatexName dropuppar
|
|
End
|
|
|
|
Style "TeX"
|
|
CopyStyle "CD label"
|
|
LatexName shapepar{\TeXshape}
|
|
End
|
|
|
|
Style "Triangle up"
|
|
CopyStyle "CD label"
|
|
LatexName triangleuppar
|
|
End
|
|
|
|
Style "Triangle down"
|
|
CopyStyle "CD label"
|
|
LatexName triangledownpar
|
|
End
|
|
|
|
Style "Triangle left"
|
|
CopyStyle "CD label"
|
|
LatexName triangleleftpar
|
|
End
|
|
|
|
Style "Triangle right"
|
|
CopyStyle "CD label"
|
|
LatexName trianglerightpar
|
|
End
|
|
|
|
# finally the low-level commands
|
|
Style "shapepar"
|
|
CopyStyle "CD label"
|
|
LatexName shapepar
|
|
Argument 1
|
|
Mandatory 0
|
|
LabelString "Scale"
|
|
Tooltip "For scaling the <Shape specification> to positions on the page"
|
|
EndArgument
|
|
Argument 2
|
|
Mandatory 1
|
|
LabelString "Shape specification"
|
|
Tooltip "Specification of the shape"
|
|
EndArgument
|
|
End
|
|
|
|
Style "Shapepar"
|
|
CopyStyle "shapepar"
|
|
LatexName Shapepar
|
|
End
|