我正在为一家网络初创公司寻找一个好的商业计划 LaTeX 模板。在我看来,它不应该有突出的“经典”外观 - 例如,在我看来,Caslon、Garamond 或 Computer Modern 等字体对于一家小公司来说太过权威;然而,我对一切都持开放态度。
非常感谢任何建议/指点!
答案1
回答这个老问题:不,似乎没有可用的 LaTeX 商业计划模板。CTA 上没有任何内容我只能找到关于此主题的不成功的论坛 / usenet 主题:
https://groups.google.com/forum/#!topic/latexusersgroup/Dyz3Vyk7ZVk
http://www.latex-community.org/forum/viewtopic.php?f=4&t=4659
http://www.latex-community.org/forum/viewtopic.php?f=4&t=787
根据我的经验,这类文档是由几乎不使用 LaTeX 的人编写的。即便如此,它通常由一群人合作完成,只要不是每个人都在使用 LaTeX,这就不会轻易实现。我从我的专利申请中了解到,情况有点类似。
即使有人用 LaTeX 写了一份好的商业计划,要把它变成一个好的通用模板也需要做很多工作,而刚写完商业计划的人通常没有这个模板。我建议你搜索一下商业计划应该是什么样子的一般指导方针,然后如果你在实施其中一条指导方针时遇到困难,可以在这里提出具体问题。
答案2
这里有一个单页商业计划模板受到启发克里斯·吉尔博的书100 美元创业。
代码:
% inspired by: http://100startup.com/resources/business-plan.pdf
%pdfLaTeX
\documentclass[12pt]{scrartcl} % KOMA-Script with 12 pt font
\usepackage{scrlayer-scrpage} % to change header/footer
\chead{\large\textbf{The One-Page Business Plan (from The \$100 Startup)}} % centered header
\cfoot{} % eliminate centered footer page number
\renewcommand{\familydefault}{\sfdefault} % switch document font to sans serif
\usepackage{paracol} % for two columns and column switching
\usepackage{xcolor} % for using \colorbox
\newcommand{\firstbox}{\colorbox{lightgray}{\rlap{1.}\hspace{\linewidth}\hspace{-2\fboxsep}}} % new command for 1. gray box
\newcommand{\secondbox}{\colorbox{lightgray}{\rlap{2.}\hspace{\linewidth}\hspace{-2\fboxsep}}} % new command for 2. gray box
\setlength\parindent{0pt} % no indents for whole document
\maxdeadcycles=200 % prevent issue with 100 dead cycles
\begin{document}
Answer each question with one or two short sentences.
\vspace{1cm}
\begin{paracol}{2}
\textcolor{red}{OVERVIEW} \\
\small What will you sell? \normalsize \\
\firstbox \\
\secondbox \\
\smallskip
\small Who will buy it? \normalsize \\
\firstbox \\
\secondbox \\
\smallskip
\small How will your business idea help people? \normalsize \\\firstbox \\
\secondbox \\
\smallskip
\textcolor{red}{KA-CHING} \\
\small What will you charge? \normalsize \\
\firstbox \\
\secondbox \\
\smallskip
\small How will you get paid? \normalsize \\
\firstbox \\
\secondbox \\
\smallskip
\small How else will you make money from this project? \normalsize \\
\firstbox \\
\secondbox \\
\switchcolumn
\textcolor{red}{HUSTLING} \\
\small How will customers learn about your business? \normalsize \\
\firstbox \\
\secondbox \\
\smallskip
\small How can you encourage referrals? \normalsize \\
\firstbox \\
\secondbox \\
\smallskip
\textcolor{red}{SUCCESS} \\
\small The project will be successful when it achieves these metrics: \\
\small Number of customers \normalsize \\
\firstbox \\
\secondbox \\
\small\textit{or} \\
\small Annual net income \normalsize \\
\firstbox \\
\secondbox \\
\small\textit{(or other metric)} \\ \normalsize
\smallskip
\textcolor{red}{OBSTACLES/CHALLENGES/QUESTIONS} \\
\small Specific concern of question \#1 \normalsize \\
\firstbox \\
\secondbox \\
\smallskip
\small Proposed solution to concern \#1 \normalsize \\
\firstbox \\
\secondbox \\
\end{paracol}
\end{document}
答案3
这里似乎有一个 ->https://github.com/ozkolonur/Latex-based-business-plan-template
但还没尝试过。