e******d 发帖数: 310 | 1 %interline spaceing and title font for section
\def\section{\@startsection {section}{1}{\z@}{20pt plus 2pt minus 2pt}
{10pt plus 1pt minus 1pt}{\centering\normalsize\sc
\edef\@svsec{\thesection.\ }}}
能否解释一下各行的含义, 以及一些command的含义,如
\z@,
\@svsec
\sc,
谢谢 | e******d 发帖数: 310 | 2 In addition, how to set the font size, based on the above environment,
for example,
===============
1. Introuduction %%%=========>> how set to 14pt
This is an introduction %%% how to set to 12pt?
====================
Thank you. | T*******n 发帖数: 493 | 3
\z@ means the null length 0pt or the integer value 0
\@svsec is defined to be the current value of the section
counter (the integer value of "section" at the time the
\@svsec macro is defined using \edef), formatted according
to the definition of \thesection. If \def were used
instead of \edef, the value of "section" when the macro
\@svsec is executed is used.
small caps
【在 e******d 的大作中提到】 : %interline spaceing and title font for section : \def\section{\@startsection {section}{1}{\z@}{20pt plus 2pt minus 2pt} : {10pt plus 1pt minus 1pt}{\centering\normalsize\sc : \edef\@svsec{\thesection.\ }}} : 能否解释一下各行的含义, 以及一些command的含义,如 : \z@, : \@svsec : \sc, : 谢谢
| s*****g 发帖数: 5159 | 4 毕生老师就是牛啊。
【在 T*******n 的大作中提到】 : : \z@ means the null length 0pt or the integer value 0 : \@svsec is defined to be the current value of the section : counter (the integer value of "section" at the time the : \@svsec macro is defined using \edef), formatted according : to the definition of \thesection. If \def were used : instead of \edef, the value of "section" when the macro : \@svsec is executed is used. : small caps
|
|