-
Notifications
You must be signed in to change notification settings - Fork 1
/
Business Proposal Latex Format.txt
87 lines (71 loc) · 2.04 KB
/
Business Proposal Latex Format.txt
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
\documentclass[a4paper,11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx} % front image
\usepackage{hyperref} % links and email
\usepackage[english]{babel} % linebreaks for english words
\usepackage{eurosym}
\usepackage{pbox} % linebreaks in tables
% footnotes in tables
\usepackage{footnote}
\makesavenoteenv{tabular}
% auto update years
\usepackage{datenumber}
\newcounter{dateone}
\newcounter{datetwo}
\newcommand{\difftoday}[3]{%
\setmydatenumber{dateone}{\the\year}{\the\month}{\the\day}%
\setmydatenumber{datetwo}{#1}{#2}{#3}%
\addtocounter{datetwo}{-\thedateone}%
\the\numexpr-\thedatetwo/365\relax
}
% opening
\title{Business plan\\YourCompanyLLC}
\author{YourName}
\begin{document}
\begin{titlepage}
\centering
\maketitle
\thispagestyle{empty} % discard page number
\includegraphics[width=2cm]{logo.png}
\vfill
{\raggedright
YourName (CEO)\\
YourAddress\\
\href{mailto:yourmail@yourdomain.com}{yourmail@yourdomain.com}\\
}
\end{titlepage}
\begin{abstract}
Write here what it's all about.
\end{abstract}
\pagebreak
\tableofcontents
\pagebreak
\section{SLE}
\section{Qualifications of founders}
YourName has \difftoday{2010}{06}{01} years of experience in YourProfession.
\section{MVP}
\section{Strategy}
% chart generated with Google chart API
% http://chart.apis.google.com/chart?chs=300x300&chdl=A|B|C&chd=t:3,4,5&cht=p
\begin{figure}[ht]
\centering
\includegraphics[width=5cm]{chart.png}
\caption{A chart}
\label{fig:chart}
\end{figure}
In Image \ref{fig:chart} you can see a chart.
\section{Market and competition}
Operating figures of competition:
\begin{center}
\begin{tabular}{l|l|r|r}
Company & Product & Price (\$) & \pbox{20cm}{Sales\\(Mio. \$)}\\
\hline
A & 1 & 100 & 1000\\
B\footnote{A footnote about B} & 2 & 100 & 1000\\
C & 3 & 100 & 1000\\
\end{tabular}
\end{center}
\section{Marketing}
\section{Financial planning}
\section{Equity requirements}
\end{document}