l3build 测试几个 tcolorbox 定理:最好的方法是什么?

l3build 测试几个 tcolorbox 定理:最好的方法是什么?

(我(仍然)正在尝试了解l3build测试如何进行。)

假设我想l3build对一个类进行测试(基于standalone类,但我猜这里并不重要),它将定义以下 tcolorbox“定理环境”。

\documentclass[varwidth=15cm,border=1in,french]{standalone}
\usepackage{tcolorbox}
\usepackage{babel}
\usepackage{zref-clever}

\tcbuselibrary{theorems,skins,hooks}
\tcbset{label is zlabel}

\tcbset{
  commonstyle/.style 2 args = {
    , fonttitle=\bfseries
    , IfEmptyF={#2}{after title={~(#2)}}
    , IfValueT={#1}{#1}
  },
  commonstyle numbered/.style 2 args = {
    , commonstyle={#1}{#2}
    , after title pre={~\thetcbcounter}
  },
  theorem-style/.style={
    , fontupper=\itshape
    , colback=red!10!white
    , colframe=red!75!black
  },
  definition-style/.style={
    , colback=green!10!white
    , colframe=green!75!black
  },
}

\NewTColorBox[auto counter]{theorem}{ o m }{%
  , commonstyle numbered={#1}{#2}
  , theorem-style
  , label type=theorem
  , title={Théorème}
}
\NewTColorBox[auto counter]{proposition}{ o m }{%
  , commonstyle numbered={#1}{#2}
  , theorem-style
  , title={Proposition}
  , label type=proposition
}
\NewTColorBox[auto counter]{corollary}{ o m }{%
  , commonstyle numbered={#1}{#2}
  , theorem-style
  , title={Corollaire}
  , label type=corollary
}
\NewTColorBox[auto counter]{definition}{ o m }{%
  , commonstyle numbered={#1}{#2}
  , definition-style
  , title={Définition}
  , label type=definition
}

\NewDocumentCommand{\dummytext}{}{%
  Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed do eiusmod
  tempor incididunt ut labore et dolore magna aliqua.%
}

\begin{document}

\begin{theorem}[label={interesting}]{interesting}
  \dummytext{}
\end{theorem}

\begin{theorem}{}
  \dummytext{}
\end{theorem}

\begin{proposition}[label={beautiful}]{beautiful}
  \dummytext{}
\end{proposition}

\begin{proposition}{}
  \dummytext{}
\end{proposition}

\begin{corollary}[label={correlated}]{correlated}
  \dummytext{}
\end{corollary}

\begin{corollary}{}
  \dummytext{}
\end{corollary}

\begin{definition}[label={clever}]{clever}
  \dummytext{}
\end{definition}

\begin{definition}{}
  \dummytext{}
\end{definition}

\zref[cap]{interesting}, \zref{interesting}, \zref{beautiful},
\zref{correlated}, \zref{clever}. 
\end{document}

如果我理解正确的话,测试文件的开头应该是:

% Test file (beginning)
\input{regression-test.tex}
\documentclass[varwidth=15cm,border=1in,french]{standalone}
\usepackage{tcolorbox}
\usepackage{babel}
\usepackage{zref-clever}

\usepackage[enable-debug,check-declarations]{expl3}

\tcbuselibrary{theorems,skins,hooks}
\tcbset{label is zlabel}

\tcbset{
  commonstyle/.style 2 args = {
    , fonttitle=\bfseries
    , IfEmptyF={#2}{after title={~(#2)}}
    , IfValueT={#1}{#1}
  },
  commonstyle numbered/.style 2 args = {
    , commonstyle={#1}{#2}
    , after title pre={~\thetcbcounter}
  },
  theorem-style/.style={
    , fontupper=\itshape
    , colback=red!10!white
    , colframe=red!75!black
  },
}

\NewTColorBox[auto counter]{theorem}{ o m }{%
  , commonstyle numbered={#1}{#2}
  , theorem-style
  , label type=theorem
  , title={Théorème}
}

\NewDocumentCommand{\dummytext}{}{%
  Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed do eiusmod
  tempor incididunt ut labore et dolore magna aliqua.%
}

\begin{document}
\START

对于此文件的其余部分,从文档中我无法清楚了解什么最适合我的目的:

  1. 测试每个定理环境:
    1. 独立还是不独立?
    2. 如果是,在同一个测试文件中还是在每个测试文件中?
  2. 例如对于theorem环境,是否最好依赖:
    1. 显示盒子内容(文档的“2.3 显示盒子内容”部分):

      % Test file (continuation)
      \ExplSyntaxOn
      \vbox_set:Nn \l_tmpb_box {#1}
      \box_show:N \l_tmpb_box {
        \begin{theorem}[label={interesting}]{interesting}
          \dummytext{}
        \end{theorem}
      
        \begin{theorem}{}
          \dummytext{}
        \end{theorem}
      
        \zref[cap]{interesting}, \zref{interesting}.
      }
      \ExplSyntaxOff
      \end{document}
      
    2. 测试整个页面(文档的“2.4 测试整个页面”部分):

       % Test file (alternative continuation)
       \begin{theorem}[label={interesting}]{interesting}
         \dummytext{}
       \end{theorem}
      
      \begin{theorem}{}
        \dummytext{}
      \end{theorem}
      
      \zref[cap]{interesting}, \zref{interesting}.
      \vfil\break
      \showlists
      \end{document}
      

答案1

你确实需要决定想要测试什么。

例如,如果您显示所有框内容,则如果 tcolorbox 更改某些内部框嵌套,您将会失败。也许您想对此进行测试,但也许您不想让每个测试都依赖于每个外部包。

如果您只是想检查是否使用了正确的字体,请不要使用\showbox(或)在每种类型的定理内部\showlists进行测试。\showthe\font

如果 babel 中的更改导致 zref-clever 与 babel 不兼容,则可能会在加载包时遇到错误,因此可能需要在\START课程之前进行一次测试(和一个空的document)以检查它是否加载。

重点是 l3build 只会告诉您某些内容已更改。例如,如果您有一个测试,\showthe\font并且将来的某些更改意外地使默认系列变为拉丁现代,您将得到一行差异显示

> \OT1/cmr/m/n/10 .
<recently read> \font 

变成

> \OT1/lmr/m/n/10 .
<recently read> \font 

另一方面,如果你\showoutput\showlists向示例文档中添加内容,理论上它会测试更多内容,但同样的更改会产生如下所示的差异,你需要检查以验证它是否是可接受的更改。这是否是有用的差异检查是个人决定。

[差异因网站规模过大而被截断]

705c734
< \OT1/cmr/m/n/10 ,
---
> \OT1/lmr/m/n/10 ,
707,710c736,737
< \hbox(6.94444+0.0)x10.86105
< .\OT1/cmr/bx/n/10 ?
< .\OT1/cmr/bx/n/10 ?
< \OT1/cmr/m/n/10 ,
---
> \OT1/lmr/m/n/10 1
> \OT1/lmr/m/n/10 ,
712,715c739,740
< \hbox(6.94444+0.0)x10.86105
< .\OT1/cmr/bx/n/10 ?
< .\OT1/cmr/bx/n/10 ?
< \OT1/cmr/m/n/10 ,
---
> \OT1/lmr/m/n/10 1
> \OT1/lmr/m/n/10 ,
717,720c742,743
< \hbox(6.94444+0.0)x10.86105
< .\OT1/cmr/bx/n/10 ?
< .\OT1/cmr/bx/n/10 ?
< \OT1/cmr/m/n/10 ,
---
> \OT1/lmr/m/n/10 1
> \OT1/lmr/m/n/10 ,
722,725c745,746
< \hbox(6.94444+0.0)x10.86105
< .\OT1/cmr/bx/n/10 ?
< .\OT1/cmr/bx/n/10 ?
< \OT1/cmr/m/n/10 .
---
> \OT1/lmr/m/n/10 1
> \OT1/lmr/m/n/10 .
732,733c753,754
< \hbox(57.91887+0.0)x426.79134
< .\hbox(57.91887+0.0)x426.79134
---
> \hbox(57.86316+0.0)x426.79134
> .\hbox(57.86316+0.0)x426.79134
744c765
< .....\hbox(0.0+0.0)x0.0, shifted -45.91887
---
> .....\hbox(0.0+0.0)x0.0, shifted -45.86316
763,766c784,787
< ....\pdfliteral{0.0 53.45123 l }
< ....\pdfliteral{0.0 55.79958 1.90364 57.70322 4.25198 57.70322 c }
< ....\pdfliteral{420.95033 57.70322 l }
< ....\pdfliteral{423.29868 57.70322 425.20232 55.79958 425.20232 53.45123 c }
---
> ....\pdfliteral{0.0 53.39572 l }
> ....\pdfliteral{0.0 55.74406 1.90364 57.64772 4.25198 57.64772 c }
> ....\pdfliteral{420.95033 57.64772 l }
> ....\pdfliteral{423.29868 57.64772 425.20232 55.74406 425.20232 53.39572 c }
778,779c799,800
< ....\pdfliteral{1.41731 39.23647 l }
< ....\pdfliteral{423.785 39.23647 l }
---
> ....\pdfliteral{1.41731 39.18097 l }
> ....\pdfliteral{423.785 39.18097 l }
792c813
< .....\hbox(0.0+0.0)x0.0, shifted -46.15099
---
> .....\hbox(0.0+0.0)x0.0, shifted -46.09528
803c824
< ..........\hbox(7.5+2.5)x395.4934, glue set 269.50652fil
---
> ..........\hbox(7.5+2.5)x395.4934, glue set 269.5063fil
805,826c826,849
< ...........\OT1/cmr/bx/n/10 T
< ...........\OT1/cmr/bx/n/10 h
< ...........\kern -0.23958 (for accent)
< ...........\OT1/cmr/bx/n/10 ^^S
< ...........\kern -5.51039 (for accent)
< ...........\OT1/cmr/bx/n/10 e
< ...........\OT1/cmr/bx/n/10 o
< ...........\OT1/cmr/bx/n/10 r
< ...........\kern -0.23958 (for accent)
< ...........\OT1/cmr/bx/n/10 ^^R
< ...........\kern -5.51039 (for accent)
< ...........\OT1/cmr/bx/n/10 e
< ...........\OT1/cmr/bx/n/10 m
< ...........\OT1/cmr/bx/n/10 e
< ...........\penalty 10000
< ...........\glue 3.83331 plus 1.91666 minus 1.27777
< ...........\OT1/cmr/bx/n/10 1
< ...........\penalty 10000
< ...........\glue 3.83331 plus 1.91666 minus 1.27777
< ...........\OT1/cmr/bx/n/10 (
< ...........\OT1/cmr/bx/n/10 i
< ...........\OT1/cmr/bx/n/10 n
---
> ...........\OT1/lmr/bx/n/10 T
> ...........\OT1/lmr/bx/n/10 h
> ...........\kern -0.2395 (for accent)
> ...........\hbox(6.85724+0.0)x5.74998, shifted 0.11725
> ............\OT1/lmr/bx/n/10 ^^S
> ...........\kern -5.51048 (for accent)
> ...........\OT1/lmr/bx/n/10 e
> ...........\OT1/lmr/bx/n/10 o
> ...........\OT1/lmr/bx/n/10 r
> ...........\kern -0.2395 (for accent)
> ...........\hbox(6.85724+0.0)x5.74998, shifted 0.11725
> ............\OT1/lmr/bx/n/10 ^^R
> ...........\kern -5.51048 (for accent)
> ...........\OT1/lmr/bx/n/10 e
> ...........\OT1/lmr/bx/n/10 m
> ...........\OT1/lmr/bx/n/10 e
> ...........\penalty 10000
> ...........\glue 3.83333 plus 1.91667 minus 1.27777
> ...........\OT1/lmr/bx/n/10 1
> ...........\penalty 10000
> ...........\glue 3.83333 plus 1.91667 minus 1.27777
> ...........\OT1/lmr/bx/n/10 (
> ...........\OT1/lmr/bx/n/10 i
> ...........\OT1/lmr/bx/n/10 n
828,837c851,860
< ...........\OT1/cmr/bx/n/10 t
< ...........\OT1/cmr/bx/n/10 e
< ...........\OT1/cmr/bx/n/10 r
< ...........\OT1/cmr/bx/n/10 e
< ...........\OT1/cmr/bx/n/10 s
< ...........\OT1/cmr/bx/n/10 t
< ...........\OT1/cmr/bx/n/10 i
< ...........\OT1/cmr/bx/n/10 n
< ...........\OT1/cmr/bx/n/10 g
< ...........\OT1/cmr/bx/n/10 )
---
> ...........\OT1/lmr/bx/n/10 t
> ...........\OT1/lmr/bx/n/10 e
> ...........\OT1/lmr/bx/n/10 r
> ...........\OT1/lmr/bx/n/10 e
> ...........\OT1/lmr/bx/n/10 s
> ...........\OT1/lmr/bx/n/10 t
> ...........\OT1/lmr/bx/n/10 i
> ...........\OT1/lmr/bx/n/10 n
> ...........\OT1/lmr/bx/n/10 g
> ...........\OT1/lmr/bx/n/10 )
854c877
< .....\hbox(0.0+0.0)x0.0, shifted -11.90286
---
> .....\hbox(0.0+0.0)x0.0, shifted -11.90285
858c881
< .......\hbox(18.94444+1.94444)x395.4934
---
> .......\hbox(18.88875+1.94443)x395.4934
860,861c883,884
< ........\hbox(18.94444+1.94444)x395.4934
< .........\vbox(18.94444+1.94444)x395.4934
---
> ........\hbox(18.88875+1.94443)x395.4934
> .........\vbox(18.88875+1.94443)x395.4934
865c888
< ..........\hbox(6.94444+1.94444)x395.4934, glue set - 0.249
---
> ..........\hbox(6.88875+1.94443)x395.4934, glue set - 0.24904
867c890
< ...........\OT1/cmr/m/it/10 L
---
> ...........\OT1/lmr/m/it/10 L
869,870c892,893
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 r
---
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 r
872,963c895,986
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 m
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 p
< ...........\OT1/cmr/m/it/10 s
< ...........\OT1/cmr/m/it/10 u
< ...........\OT1/cmr/m/it/10 m
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 d
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 l
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 r
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 s
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 t
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 a
< ...........\OT1/cmr/m/it/10 m
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 t
< ...........\OT1/cmr/m/it/10 ,
< ...........\glue 3.57774 plus 1.53485 minus 1.02118
< ...........\OT1/cmr/m/it/10 c
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 n
< ...........\OT1/cmr/m/it/10 s
< ...........\OT1/cmr/m/it/10 e
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 c
< ...........\OT1/cmr/m/it/10 t
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 t
< ...........\OT1/cmr/m/it/10 u
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 r
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 a
< ...........\OT1/cmr/m/it/10 d
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 p
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 s
< ...........\OT1/cmr/m/it/10 c
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 n
< ...........\OT1/cmr/m/it/10 g
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 l
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 t
< ...........\OT1/cmr/m/it/10 ,
< ...........\glue 3.57774 plus 1.53485 minus 1.02118
< ...........\OT1/cmr/m/it/10 s
< ...........\OT1/cmr/m/it/10 e
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 d
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 d
< ...........\OT1/cmr/m/it/10 o
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 u
< ...........\OT1/cmr/m/it/10 s
< ...........\OT1/cmr/m/it/10 m
< ...........\OT1/cmr/m/it/10 o
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 d
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 t
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 m
< ...........\OT1/cmr/m/it/10 p
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 r
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 n
< ...........\OT1/cmr/m/it/10 c
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 d
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 d
< ...........\OT1/cmr/m/it/10 u
< ...........\OT1/cmr/m/it/10 n
< ...........\OT1/cmr/m/it/10 t
---
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 m
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 p
> ...........\OT1/lmr/m/it/10 s
> ...........\OT1/lmr/m/it/10 u
> ...........\OT1/lmr/m/it/10 m
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 d
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 l
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 r
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 s
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 t
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 a
> ...........\OT1/lmr/m/it/10 m
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 t
> ...........\OT1/lmr/m/it/10 ,
> ...........\glue 3.57777 plus 1.53485 minus 1.02118
> ...........\OT1/lmr/m/it/10 c
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 n
> ...........\OT1/lmr/m/it/10 s
> ...........\OT1/lmr/m/it/10 e
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 c
> ...........\OT1/lmr/m/it/10 t
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 t
> ...........\OT1/lmr/m/it/10 u
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 r
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 a
> ...........\OT1/lmr/m/it/10 d
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 p
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 s
> ...........\OT1/lmr/m/it/10 c
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 n
> ...........\OT1/lmr/m/it/10 g
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 l
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 t
> ...........\OT1/lmr/m/it/10 ,
> ...........\glue 3.57777 plus 1.53485 minus 1.02118
> ...........\OT1/lmr/m/it/10 s
> ...........\OT1/lmr/m/it/10 e
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 d
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 d
> ...........\OT1/lmr/m/it/10 o
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 u
> ...........\OT1/lmr/m/it/10 s
> ...........\OT1/lmr/m/it/10 m
> ...........\OT1/lmr/m/it/10 o
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 d
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 t
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 m
> ...........\OT1/lmr/m/it/10 p
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 r
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 n
> ...........\OT1/lmr/m/it/10 c
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 d
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 d
> ...........\OT1/lmr/m/it/10 u
> ...........\OT1/lmr/m/it/10 n
> ...........\OT1/lmr/m/it/10 t
966,1003c989,1026
< ..........\glue(\baselineskip) 3.11111
< ..........\hbox(6.94444+1.94444)x395.4934, glue set 252.12776fil
< ...........\OT1/cmr/m/it/10 u
< ...........\OT1/cmr/m/it/10 t
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 l
< ...........\OT1/cmr/m/it/10 a
< ...........\OT1/cmr/m/it/10 b
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 r
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 e
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 e
< ...........\OT1/cmr/m/it/10 t
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 d
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 l
< ...........\OT1/cmr/m/it/10 o
< ...........\OT1/cmr/m/it/10 r
< ...........\kern-0.51112
< ...........\OT1/cmr/m/it/10 e
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 m
< ...........\OT1/cmr/m/it/10 a
< ...........\OT1/cmr/m/it/10 g
< ...........\OT1/cmr/m/it/10 n
< ...........\OT1/cmr/m/it/10 a
< ...........\glue 3.57774 plus 1.53333 minus 1.0222
< ...........\OT1/cmr/m/it/10 a
< ...........\OT1/cmr/m/it/10 l
< ...........\OT1/cmr/m/it/10 i
< ...........\OT1/cmr/m/it/10 q
< ...........\OT1/cmr/m/it/10 u
< ...........\OT1/cmr/m/it/10 a
< ...........\OT1/cmr/m/it/10 .
---
> ..........\glue(\baselineskip) 3.16682
> ..........\hbox(6.88875+1.94443)x395.4934, glue set 252.1282fil
> ...........\OT1/lmr/m/it/10 u
> ...........\OT1/lmr/m/it/10 t
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 l
> ...........\OT1/lmr/m/it/10 a
> ...........\OT1/lmr/m/it/10 b
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 r
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 e
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 e
> ...........\OT1/lmr/m/it/10 t
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 d
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 l
> ...........\OT1/lmr/m/it/10 o
> ...........\OT1/lmr/m/it/10 r
> ...........\kern-0.51112
> ...........\OT1/lmr/m/it/10 e
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 m
> ...........\OT1/lmr/m/it/10 a
> ...........\OT1/lmr/m/it/10 g
> ...........\OT1/lmr/m/it/10 n
> ...........\OT1/lmr/m/it/10 a
> ...........\glue 3.57777 plus 1.53333 minus 1.0222
> ...........\OT1/lmr/m/it/10 a
> ...........\OT1/lmr/m/it/10 l
> ...........\OT1/lmr/m/it/10 i
> ...........\OT1/lmr/m/it/10 q
> ...........\OT1/lmr/m/it/10 u
> ...........\OT1/lmr/m/it/10 a
> ...........\OT1/lmr/m/it/10 .


相关内容