lyx_mirror/lib/layouts/hanging.module
Juergen Spitzmueller bbf287a3c6 Allow for cite engine and format definitions/modifications in layouts
Now layout files and modules can extend the cite engines or completely
overwrite them, and modify the cite formats.

Any CiteEngine definition in a layout/module will completely overwrite
those by cite engine files.

AddToCiteEngine will extend them (add if they do not exist yet).

Any CiteFormat definition in a layout will be preferred to those in cite
engines. CiteFormat definitions that are not touched by the former are
still active, though (so, as opposed to CiteEngine, a CiteFormat does
not completely overwrite those by the engine files).

Layout format change.
2018-05-21 12:46:53 +02:00

51 lines
1.4 KiB
Plaintext

#\DeclareLyXModule{Hanging}
#DescriptionBegin
#Adds an environment for hanging paragraphs.
#Hanging paragraph is a paragraph in which the first line is set to the left margin, but all subsequent lines are indented.
#DescriptionEnd
#Author: Richard Heck
#Hanging paragraph code adapted from hanging.sty, available at:
# http://www.ctan.org/tex-archive/macros/latex/contrib/hanging/
#Copyright Peter R. Wilson.
#Released under the LaTeX Project Public License.
Format 68
Style Hanging
LatexType Environment
LatexName hangparagraphs
Align Block
Margin Static
LeftMargin "MMMM"
ParIndent "-MMMM"
Requires ifthen
Preamble
\newlength{\lyxhang}
\IfFileExists{hanging.sty}{
\usepackage{hanging}
\newenvironment{hangparagraphs}
{%
\ifthenelse{\lengthtest{\parindent > 0pt}}%
{\setlength{\lyxhang}{\parindent}}%
{\setlength{\lyxhang}{2em}}%
\par\begin{hangparas}{\lyxhang}{1}%
}
{\end{hangparas}}
}{%else
\newenvironment{hangparagraphs}
{%
\ifthenelse{\lengthtest{\parindent > 0pt}}%
{\setlength{\lyxhang}{\parindent}}%
{\setlength{\lyxhang}{2em}}%
\begin{hangparas}%
}
{\end{hangparas}}
\newcommand{\hangpara}{\hangindent \lyxhang \hangafter 1 \noindent}
\newenvironment{hangparas}{\setlength{\parindent}{\z@}
\everypar={\hangpara}}{\par}
}
EndPreamble
End