由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - 一个对齐的问题
相关主题
数学证明的结尾符号是啥?Footnote in latex
tex问题How to remove Latex figure number?
Another questionlatex Table/Figure 请叫
how to label the section number using I, II and so onLaTex Help Doublespacing
section编号问题THESIS格式求教
写subsection和subsubsection是不是命令不一样呢请教latex中文的输入
求助:如何在latex中让section title 左对齐?如何改变标题字体大小
怎么实现这个插图?向大牛紧急求助:新版latex里面怎么弄hyperref???
相关话题的讨论汇总
话题: chapter话题: latex话题: bfseries话题: nobreak话题: vskip
进入TeX版参与讨论
1 (共1页)
z*****n
发帖数: 7639
1
根据要求,我得用book格式写个report。但是章节开始页
要用这个格式:
1. (my chapter title)
1.1 (my section title)
在book.sty里面的default设置是这样的:
Chapter 1
(my chapter title)
在book.cls里面,it is writen so
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
\huge\bfseries \@chapapp\space \thechapter
\par\nobreak
\vskip 20\p@
\fi
\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
h***n
发帖数: 36
2
what you need is to change the format of chapter counter, search "latex
counter" with google, or check the topic if you have a latex reference handy.
I don't remember the exact stuff.

【在 z*****n 的大作中提到】
: 根据要求,我得用book格式写个report。但是章节开始页
: 要用这个格式:
: 1. (my chapter title)
: 1.1 (my section title)
: 在book.sty里面的default设置是这样的:
: Chapter 1
: (my chapter title)
: 在book.cls里面,it is writen so
: \def\@makechapterhead#1{%
: \vspace*{50\p@}%

T*******n
发帖数: 493
3
I'm travelling right now so I don't have access to reference books,
but take a look at book.cls or report.cls to find the definitions
for \section, \subsection, \subsubsection, \paragraph, and
\subparagraph. If I remember correctly, these all use the
\@startsection command, which is explained in The LaTeX Companion
book by the LaTeX developers. You can try doing the following:
\renewcommand{\chapter}{%
\clearpage
\@startsection{...}...%
}
The level number for chapter should be 0 (1 for sec

【在 z*****n 的大作中提到】
: 根据要求,我得用book格式写个report。但是章节开始页
: 要用这个格式:
: 1. (my chapter title)
: 1.1 (my section title)
: 在book.sty里面的default设置是这样的:
: Chapter 1
: (my chapter title)
: 在book.cls里面,it is writen so
: \def\@makechapterhead#1{%
: \vspace*{50\p@}%

1 (共1页)
进入TeX版参与讨论
相关主题
向大牛紧急求助:新版latex里面怎么弄hyperref???section编号问题
LaTeX中参数改变的命令写subsection和subsubsection是不是命令不一样呢
请教:\chapter 和 \appendix求助:如何在latex中让section title 左对齐?
Formating question in Latex怎么实现这个插图?
数学证明的结尾符号是啥?Footnote in latex
tex问题How to remove Latex figure number?
Another questionlatex Table/Figure 请叫
how to label the section number using I, II and so onLaTex Help Doublespacing
相关话题的讨论汇总
话题: chapter话题: latex话题: bfseries话题: nobreak话题: vskip