LaTeX Source

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
\documentclass[12pt]{article}
\usepackage[papersize={120mm, 25mm}, text={100mm, 20mm}]{geometry}
\usepackage{concrete}
\usepackage{color}
\definecolor{MyGray}{rgb}{0.96,0.97,0.98}
 
\makeatletter\newenvironment{mybox}{%
   \begin{lrbox}{\@tempboxa}\begin{minipage}{0.97\textwidth}%
   \refstepcounter{equation}(\arabic{equation})}{\end{minipage}\end{lrbox}%
   \noindent\colorbox{MyGray}{\usebox{\@tempboxa}}}
\makeatother
 
\usepackage{amsmath}
% Matrix norm
\newcommand{\norm}[1]{\ensuremath{\lVert{#1}\rVert }}
% bold face letters for matrix and vector
\newcommand{\Ebf}{\ensuremath{\mathbf{E}}}
 
\begin{document}
\pagestyle{empty}
\begin{mybox}
$\displaystyle \quad |\sigma_k - \beta_k| \leq \norm{\Ebf}_2\quad$
for $1\leq k\leq n$.
\label{eq:1}
\end{mybox}
 
This can be proved by the following fact.
\begin{equation}
  \label{eq:2}
  x^2 + y^2 = z^2
\end{equation}
\end{document}
Comments Off on LaTeX Environment: Kleinberg-Tardos style

natbib example

how to compile

1
xelatex doc; bibtex doc; xelatex doc; xelatex doc;

doc.tex

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
\documentclass[12pt]{article}
\RequirePackage[papersize={180mm,140mm}, text={170mm, 130mm}, centering]{geometry}
%\usepackage{hyperref}
\usepackage{palatino}
\usepackage{natbib}
  
\begin{document}
\section*{Introduction}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce quis
purus tortor, \citep{merton1973tro} sed interdum sem. Nunc auctor nunc
in nisi suscipit tempus. \citet{black1973poa}
  
\section{Preliminaries}
Aliquam erat volutpat. Aenean lobortis tristique quam eget
interdum. Pellentesque ligula felis, convallis sit amet consequat nec,
egestas ac massa.\citep{harrison1979maa,pliska1981mas}
  
\bibliographystyle{apalike}
\bibliography{bib}
  
\end{document}

bib.bib

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
@article{black1973poa,
        title = {The pricing of options and corporate liabilities},
        author = {Fishcer Black and Myron Scholes},
        journal = {Journal of political economy},
        number = 3,
        pages = 637,
        publisher = {UChicago Press},
        volume = 81,
        year = 1973,
  
@article{pliska1981mas,
        title = {Martingales and stochastic integrals in the theory of continuous trading},
        author = {J. Michael Harrison and Stanley Pliska},
        journal = {Stochastic Processes and their Applications},
        pages = {215--260},
        volume = 11,
        year = 1981,
  
@article{harrison1979maa,
        title = {Martingales and arbitrage in multiperiod securities markets},
        author = {J. Michael Harrison and David M. Kreps},
        journal = {Journal of Economic theory},
        number = 3,
        pages = {381--408},
        volume = 20,
        year = 1979,
  
@article{merton1973tro,
        title = {Theory of rational option pricing},
        author = {Robert Merton},
        journal = {The Bell Journal of Economics and Management Science},
        pages = {141--183},
        publisher = {American Telephone and Telegraph Company},
        year = 1973,
Comments Off on bibliography style: natbib