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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%% template.tex for PTPTeX.cls <ver.0.9> %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[seceq]{ptptex}
%\documentclass[letter]{ptptex}
%\documentclass[seceq,supplement]{ptptex}
%\documentclass[seceq,addenda]{ptptex}
%\documentclass[seceq,errata]{ptptex}
%\documentclass[seceq,preprint]{ptptex}
%\usepackage{graphicx}
%\usepackage{wrapft}
%%%%% Personal Macros %%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\pubinfo{Vol.~11X, No.~X, Mmmmm YYYY}%Editorial Office will fill in this.
%\setcounter{page}{} %Editorial Office will fill in this.
%\def\ptype{p} %Editorial Office will fill in this.
%\def\ptpsubject{} %Editorial Office will fill in this.
%\def\pageinfo{X-X} %Editorial Office will fill in this.
%-------------------------------------------------------------------------
%\nofigureboxrule %to eliminate the rule of \figurebox
%\notypesetlogo %comment in if to eliminate PTPTeX
%---- When [preprint] you can put preprint number at top right corner.
%\preprintnumber[3cm]{%<-- [..]: optional width of preprint # column.
%KUNS-1325\\PTPTeX ver.0.8\\ August, 1997}
%-------------------------------------------------------------------------
\markboth{% %running head for odd-page (authors' name)
authors' name%
}{% %running head for even-page (`short' title)
`short' title%
}
\title{% %You can use \\ for explicit line-break
Title%
}
%\subtitle{Subtitle} %use this when you want a subtitle
\author{% %Use \scshape for the family name
Firstname \textsc{Familyname}%
}
\inst{% %Affiliation, neglected when [addenda] or [errata]
Name and Address of your affiliation
}
%\publishedin{% %Write this ONLY in cases of addenda and errata
%Prog.~Theor.~Phys.\ \textbf{XX} (19YY), page.}
%\recdate{Mmmmm DD, YYYY}% %Editorial Office will fill in this.
\abst{% %this abstract is neglected when [addenda] or [errata]
Write your ABSTRACT here.
}
\begin{document}
\maketitle
\section{Section Title}
Start your paper from here.
%\section*{Acknowledgements}
%We would like to thank ...........
%\appendix
%\section{First Appendix} %Empty argument \section{} yields `Appendix'.
%
%\section{Second Appendix}
\begin{thebibliography}{99}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Some macros are available for the bibliography:
% o for general use
% \JL : general journals \andvol : Vol (Year) Page
% o for individual journal
% \AJ : Astrophys. J. \NC : Nuovo Cim.
% \ANN : Ann. of Phys. \NPA, \NPB : Nucl. Phys. [A,B]
% \CMP : Commun. Math. Phys. \PLA, \PLB : Phys. Lett. [A,B]
% \IJMP : Int. J. Mod. Phys. \PRA - \PRE : Phys. Rev. [A-E]
% \JHEP : J. High Energy Phys. \PRL : Phys. Rev. Lett.
% \JMP : J. Math. Phys. \PRP : Phys. Rep.
% \JP : J. of Phys. \PTP : Prog. Theor. Phys.
% \JPSJ : J. Phys. Soc. Jpn. \PTPS : Prog. Theor. Phys. Suppl.
% Usage:
% \PRD{45,1990,345} ==> Phys.~Rev.\ \textbf{D45} (1990), 345
% \JL{Nature,418,2002,123} ==> Nature \textbf{418} (2002), 123
% \andvol{B123,1995,1020} ==> \textbf{B123} (1995), 1020
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\bibitem{}
\end{thebibliography}
\end{document}
|