c*******o 发帖数: 1722 | 1 how to do it? some bt journal wants this.
thanks. |
i*i 发帖数: 918 | 2 Nontrivial, you can always add \newline at appropriate places though. |
T*******n 发帖数: 493 | 3 Is the document class based on one of LaTeX's standard classes?
Search the .log file and look for "size1?.clo" and tell me if you
find anything, and if so, is ? equal to 0, 1, or 2?
【在 c*******o 的大作中提到】 : how to do it? some bt journal wants this. : thanks.
|
i*******w 发帖数: 405 | 4 我们学校Template出来的Footnote是 double space,但是我想把它弄成single space,
还正不知道改怎么搞才行。你这里却是想要搞成 double 的。
【在 c*******o 的大作中提到】 : how to do it? some bt journal wants this. : thanks.
|
T*******n 发帖数: 493 | 5 You will likely need to find the definition for \footnotesize and modify it.
You will need to give more information for anyone to give you a solution,
i.e., how double-spacing is implemented in your thesis class. If you don't
know where to begin, look for the definition of \footnotesize in the .cls,
.clo, or .sty files that you use. Post the definition here, and also post
the list of .cls, .clo, .sty files that you use.
space,
【在 i*******w 的大作中提到】 : 我们学校Template出来的Footnote是 double space,但是我想把它弄成single space, : 还正不知道改怎么搞才行。你这里却是想要搞成 double 的。
|
i*******w 发帖数: 405 | 6 我找了一下,在.sty file 里面没有发现 \footnotesize, 只有一个 \footskip,大侠
有空帮我看看,我把.sty file 贴在下面了:
-----------------
%%
%% LaTeX Dissertation Format Style File
%%
%% Developed by:
%% Daniel O. Awduche and Christopher A. St. Jean
%% Communications and Networking Lab
%% Dept. of Electrical and Computer Engineering
%% (with code adopted from the Stanford University PhD thesis
%% style and other sources)
%%
%% Notes on usage can be found in the accompanying USAGE_NOTES.txt file
%%
%% ** Nee |
c*******h 发帖数: 1096 | 7 hack了一段代码
放在preamble
若与文档其他部分冲突,概不负责。。
\makeatletter
\long\def\@footnotetext#1{%
\insert\footins{%
\def\baselinestretch{2}%
\reset@font\footnotesize
\interlinepenalty\interfootnotelinepenalty
\splittopskip\footnotesep
\splitmaxdepth \dp\strutbox \floatingpenalty \@MM
\hsize\columnwidth
\@parboxrestore
\protected@edef\@currentlabel{%
\csname p@footnote\endcsname\@thefnmark
}%
\color@begingroup
\vskip .5\baselineskip
\@makefntext{%
【在 c*******o 的大作中提到】 : how to do it? some bt journal wants this. : thanks.
|
T*******n 发帖数: 493 | 8 Okay, I'll need a bit of time to look at this.
【在 i*******w 的大作中提到】 : 我找了一下,在.sty file 里面没有发现 \footnotesize, 只有一个 \footskip,大侠 : 有空帮我看看,我把.sty file 贴在下面了: : ----------------- : %% : %% LaTeX Dissertation Format Style File : %% : %% Developed by: : %% Daniel O. Awduche and Christopher A. St. Jean : %% Communications and Networking Lab : %% Dept. of Electrical and Computer Engineering
|