自制latex小模板

来源:互联网 发布:淘宝企业店铺发票规则 编辑:程序博客网 时间:2024/05/01 05:34

\documentclass{article}

\usepackage{geometry}

\usepackage{graphicx}

\usepackage{setspace}

\usepackage{amsmath}

\usepackage{listings}

\usepackage{color}


\lstset{ %

extendedchars=false, % Shutdown no-ASCII compatible

language=Matlab, % choose the language of the code

basicstyle=\footnotesize\tt, % the size of the fonts that are used for the code

tabsize=3, % sets default tabsize to 3 spaces

numbers=left, % where to put the line-numbers

numberstyle=\tiny, % the size of the fonts that are used for the line-numbers

stepnumber=1, % the step between two line-numbers. If it's 1 each line

% will be numbered

numbersep=8pt, % how far the line-numbers are from the code %

keywordstyle=\color[rgb]{0,0,1}, % keywords

commentstyle=\color[rgb]{0.133,0.545,0.133}, % comments

stringstyle=\color[rgb]{0.627,0.126,0.941}, % strings

backgroundcolor=\color[rgb]{0.9,0.9,0.9}, % choose the background color. You must add \usepackage{color}

showspaces=false, % show spaces adding particular underscores

showstringspaces=false, % underline spaces within strings

showtabs=false, % show tabs within strings adding particular underscores

frame=single, % adds a frame around the code

captionpos=b, % sets the caption-position to bottom

breaklines=true, % sets automatic line breaking

breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace

title=\lstname, % show the filename of files included with \lstinputlisting;

% also try caption instead of title

mathescape=true,escapechar=? % escape to latex with ?..?

escapeinside={\%*}{*)}, % if you want to add a comment within your code

%columns=fixed, % nice spacing

%morestring=[m]', % strings

morekeywords={normpdf}

%morekeywords={%,...},% % if you want to add more keywords to the set

% break,case,catch,continue,elseif,else,end,for,function,global,%

% if,otherwise,persistent,return,switch,try,while,...},%

}


\geometry{left=1.5cm,right=1.5cm,top=1.5cm,bottom=1.5cm}


\title{Homework 2}

\author{Tao Fu}


\begin{document}

\maketitle

\begin{spacing}{1.5}


\section*{Problem 1}

$x(\alpha) \sim N(x(0)+\alpha R,P(0)+\alpha Q)$. When $\alpha = 10$, $x(10) \sim N(3,0.2)$. Therefore $.P(2.9 < x < 3.0)= 0.0875$.


\lstinputlisting{Problem1.m}


\section*{Problem 2}

\begin{figure}[h!]

\begin{center}

\includegraphics[width=9cm ]{figure2}

\caption{relation between$\beta$ and trajectory center}

\end{center}•

\end{figure}•

From the figure, we can get $R^{'}$:

\begin{align*}

\frac {R^{'}+b} {R^{'}-b} & = \frac {r\Delta\theta_2} {r\Delta\theta_1}\\

=> \quad R^{'} & = \frac {b(\Delta\theta_1 + \Delta\theta_2)} {\Delta\theta_2 - \Delta\theta_1};

\end{align*}

Therefore, $tan(\beta) = \frac {a}{R^{'}} = \frac {a(\Delta\theta_2 - \Delta\theta_1)}{b(\Delta\theta_1 + \Delta\theta_2)}=\frac {au}{b}$.\\


\end{spacing}

\end{document}



0 0
原创粉丝点击