2008-01-09 18:51:02 +00:00
|
|
|
#\DeclareLyXModule{Hanging}
|
|
|
|
#DescriptionBegin
|
2008-07-07 22:59:40 +00:00
|
|
|
#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.
|
2008-01-09 18:51:02 +00:00
|
|
|
#DescriptionEnd
|
|
|
|
|
2007-09-23 05:46:22 +00:00
|
|
|
#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.
|
|
|
|
|
2013-02-21 20:57:59 +00:00
|
|
|
Format 45
|
2007-09-23 05:46:22 +00:00
|
|
|
|
|
|
|
Style Hanging
|
|
|
|
LatexType Environment
|
|
|
|
LatexName hangparagraphs
|
|
|
|
Align Block
|
|
|
|
Margin Static
|
|
|
|
LeftMargin "MMMM"
|
|
|
|
ParIndent "-MMMM"
|
2008-01-07 17:32:47 +00:00
|
|
|
Requires ifthen
|
2007-09-23 05:46:22 +00:00
|
|
|
Preamble
|
|
|
|
\newlength{\lyxhang}
|
|
|
|
\IfFileExists{hanging.sty}{
|
|
|
|
\usepackage{hanging}
|
|
|
|
\newenvironment{hangparagraphs}
|
|
|
|
{%
|
|
|
|
\ifthenelse{\lengthtest{\parindent > 0pt}}%
|
|
|
|
{\setlength{\lyxhang}{\parindent}}%
|
|
|
|
{\setlength{\lyxhang}{2em}}%
|
2008-12-15 15:00:21 +00:00
|
|
|
\par\begin{hangparas}{\lyxhang}{1}%
|
2007-09-23 05:46:22 +00:00
|
|
|
}
|
2008-12-15 15:00:21 +00:00
|
|
|
{\end{hangparas}}
|
2007-09-23 05:46:22 +00:00
|
|
|
}{%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
|