blob: 1074c241eeae944a5525424bc52ec313fb90e3db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
%%
%% This is file `manuscript.sty',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% manuscript.dtx (with options: `package')
%% This is a stripped version of the original file.
%% Copyright (C) 2002 Matej Cepl
%% $Id: manuscript.dtx,v 1.6 2005/09/02 12:08:35 matej Exp $
%% This program may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.2
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%% http://www.latex-project.org/lppl.txt
%% and version 1.2 or later is part of all distributions of LaTeX
%% version 1999/12/01 or later.
\NeedsTeXFormat{LaTeX2e}[1996/06/01]
\ProvidesPackage{manuscript}
[2015/01/19 1.7 emulate typesetting of typewriter]
\newif\ifMS@ps
\DeclareOption{cm}{\MS@psfalse}
\DeclareOption{cr}{\MS@pstrue}
\ExecuteOptions{cr}
\ProcessOptions\relax
\RequirePackage{setspace}
\RequirePackage[T1]{fontenc}
\RequirePackage[NewCommands]{ragged2e}
\RequirePackage{soul}
\ifMS@ps
\renewcommand{\rmdefault}{pcr}
\else
\renewcommand{\rmdefault}{cmtt}
\fi
\@ifundefined{scr@parskip}{}{%
\renewcommand*{\descfont}{\scshape}
\renewcommand*{\sectfont}{\large\scshape} }
\iffalse
\catcode96=13
\def``{{\usefont{OT1}{cmss}{m}{n}\symbol{92}}}
\catcode39=13
\def'{\protect\MS@quote}
\def\MS@quote{\futurelet \nextchar \MS@questquote}
\def\MS@questquote{\ifx `\nextchar \let\MS@next=\MS@dblq
\else \let\MS@next=\MS@sglq
\fi \MS@next}
\def\MS@dblq{{\usefont{OT1}{cmss}{m}{n}\symbol{125}}}
\def\MS@sglq{{\usefont{OT1}{cmss}{m}{n}\symbol{39}}}
\fi
\renewcommand{\sfdefault}{\rmdefault}
\renewcommand{\ttdefault}{\rmdefault}
\@ifundefined{typearea}
{\RequirePackage{fullpage}}
{\typearea[0pt]{13}}
\renewcommand{\textbf}[1]{\textsc{#1}}
\def\bfseries{\scshape}
\AtBeginDocument{%
\setul{0.3ex}{0.15ex}
\renewcommand{\emph}[1]{\ul{#1}}
\def\em{\egroup \expandafter \ul \expandafter{\iffalse}\fi}
}
\let\footnotesize\@empty
\doublespacing
\AtBeginDocument{%
\raggedright
\parindent 1em
\spaceskip .333333 em plus .333333 em minus .111111 em }
\def\thefootnote{\@arabic\c@footnote/}
\def\@makefnmark%
{\hbox{\normalfont\@thefnmark}}
\renewcommand\@makefntext[1]{%
\leftskip 1.8em \noindent
\llap{\normalfont\@thefnmark\ }#1}%
\let\MS@maketitle=\@maketitle
\if@titlepage
\def\@maketitle{%
\hyphenpenalty=5000
\let\huge\LARGE
\MS@maketitle }
\else
\def\@maketitle{%
\singlespacing
\hyphenpenalty=5000
\let\huge\LARGE
\MS@maketitle }
\fi
%% This is the end of the stripped file.
%%
%% End of file `manuscript.sty'.
|