Latex: 'inset style renders through a SInsetFlow environment

This commit is contained in:
Matthew Flatt 2015-12-13 07:40:26 -07:00
parent 141d818675
commit ad9a465ab1
3 changed files with 18 additions and 2 deletions

View File

@ -623,6 +623,21 @@ style:
in place of @ltxd[2]{Ssection}, @ltxd[1]{Ssectionstar}, @|etc|
for a part with the @racket['grouper] style property.}
@item{@ltxe{SInsetFlow} environment --- for a @racket[nested-flow]
with the @racket['inset] style name.}
@item{@ltxe{SCodeFlow} environment --- for a @racket[nested-flow]
with the @racket['code-inset] style name.}
@item{@ltxe{SVInsetFlow} environment --- for a @racket[nested-flow]
with the @racket['vertical-inset] style name.}
@item{@ltxd[1]{SCodeBox}, @ltxd[1]{SVInsetBox} --- for a
@racket[nested-flow] with the @racket['code-inset] or
@racket['vertical-inset] style name, respectively, and as the
content of a table cell. The content is installed into a TeX
box using @tt{\setbox1}.}
]
@; ------------------------------------------------------------

View File

@ -849,7 +849,7 @@
[else (error "unexpected style for box mode")])))
(let ([s (style-name (nested-flow-style t))])
(or (and (string? s) s)
(and (eq? s 'inset) "quote")
(and (eq? s 'inset) "SInsetFlow")
(and (eq? s 'code-inset) "SCodeFlow")
(and (eq? s 'vertical-inset) "SVInsetFlow")))
"Subflow")]

View File

@ -260,7 +260,8 @@
\listparindent=0pt\itemindent=0pt\labelwidth=0pt\leftmargin=0pt\rightmargin=0pt%
\itemsep=0pt}\item}{\end{list}}
% The 'inset nested-flow style uses the `quote' environment
% For the 'inset nested-flow style:
\newenvironment{SInsetFlow}{\begin{quote}}{\end{quote}}
% Indent a 'code-inset nested flow:
\newcommand{\SCodePreSkip}{\vskip\abovedisplayskip}