import template from edgar

Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
This commit is contained in:
Nico Schottelius 2019-02-21 20:29:50 +01:00
parent 186f9e36aa
commit 1b835726ad
23 changed files with 3290 additions and 0 deletions

View File

@ -0,0 +1,19 @@
%****************************************************************************
%** Copyright 2002 by Lukas Ruf, ruf@topsy.net
%** Information is provided under the terms of the
%** GNU Free Documentation License http://www.gnu.org/copyleft/fdl.html
%** Fairness: Cite the source of information, visit http://www.topsy.net
%****************************************************************************
%** Last Modification: 2005-07-11 1600
%** 2005-07-11 Bernhard Tellenbach
%** Inserted new content
%****************************************************************************
\clearpage
\null
\vfil % or it might be \null
\thispagestyle{plain}
\begin{center}\textbf{Abstract}\end{center}
In journal articles, research papers, published patent applications and patents, an abstract is a short summary placed prior to the introduction, often with different line justification (blockquote) from the rest of the article, used to help readers determine the purpose of the paper. While the length of the abstract varies by field of study, it is typically a paragraph in length (3-5 sentences), and never more than a page. See
\url{en.wikipedia.org/wiki/Abstract(summary)} for details
\vfil
\clearpage

View File

@ -0,0 +1,2 @@
\chapter{\label{design}Title}
Description of the theory/software/hardware that you designed.

View File

@ -0,0 +1,29 @@
%****************************************************************************
%** Copyright 2002 by Lukas Ruf, ruf@topsy.net
%** Information is provided under the terms of the
%** GNU Free Documentation License http://www.gnu.org/copyleft/fdl.html
%** Fairness: Cite the source of information, visit http://www.topsy.net
%****************************************************************************
%Example structure for an introduction
%****************************************************************************
%** Copyright 2002, 2003 by Lukas Ruf, <ruf@topsy.net>
%** Information is provided under the terms of the
%** GNU Free Documentation License <http://www.gnu.org/copyleft/fdl.html>
%** Fairness: Cite the source of information, visit <http://www.topsy.net>
%****************************************************************************
\chapter{\label{introduction}Introduction}
Introduce the related research field/the project.
\section{\label{introduction:motivation}Motivation}
The motivation to write this thesis was...
\section{\label{introduction:taskdescription}The Task}
Describe your task.
\section{\label{introduction:relatedwork}Related Work}
A relevant work was~\cite{Lamport:LaTeX} (this citation is just an example...)
\section{\label{introduction:overview}Overview}
Chapter 2 describes... Chapter 3 presents...

View File

@ -0,0 +1,11 @@
NOTE = !! change the next line to fit your filename; no spaces at file name end !!
FILE = Thesis
all:
pdflatex $(FILE)
bibtex $(FILE)
pdflatex $(FILE)
pdflatex $(FILE)
clean:
rm -f *.dvi *.log *.aux *.bbl *.blg *.toc *.lof *.lot *.cb *.~

View File

@ -0,0 +1,2 @@
\chapter{\label{originalproblem}Title}
Here comes the original task description that you agreed on with your supervisor/tutor.

View File

@ -0,0 +1,2 @@
\chapter{\label{outlook}Title}
What are the consequences of your work for future work?

View File

@ -0,0 +1,102 @@
%****************************************************************************
%** Copyright 2002 by Lukas Ruf, ruf@topsy.net
%** Information is provided under the terms of the
%** GNU Free Documentation License http://www.gnu.org/copyleft/fdl.html
%** Fairness: Cite the source of information, visit http://www.topsy.net
%****************************************************************************
%****************************************************************************
%** Last Modification: 2005-07-11 1600
%** 2005-07-11 Bernhard Tellenbach
%** This is an addapted version of the Introduction.tex file
%** Added table example (footnotes,multicolumn)
%** Examples for different text sizes
%** Updated eps file inclusion example for use with graphicx pkt.
%****************************************************************************
\chapter{\label{chapter2}Title}
In \ref{introduction} we start with our introduction to the problem that we
are going to address. Since we do not want to waste the readers time we
go and show the essential issues of latex in section
\ref{chapter2:essentials}.
\section{\label{chapter2:essentials}Essentials}
Well this section can be further subdivided into subsection. We present
this in subsection \ref{chapter2:essentials:subsections}.
\subsection{\label{chapter2:essentials:subsections}Subsections}
\paragraph{\label{introduction:essentials:subsections:paragraph}Paragraphs}
can be specially referenced as well.
Of further importance is the understanding of the following environments:
%*** itemized lists
\begin{itemize}
\item This shows an itemized bullet list
\begin{itemize}
\item Which can be used for several levels\ldots
\end{itemize}
\end{itemize}
%*** enumerated lists
\begin{enumerate}
\item The same applies to enumerated lists.
\end{enumerate}
%** figures
\begin{figure}[!hbt]
\begin{center}
% \includegraphics[width=\textwidth, angle=90]{file_name.eps}
\caption{This is a figure to be printed in a float}
\label{file_name}
\end{center}
\end{figure}
By figure \ref{file_name}, we show some funny figures.
Table with caption and footnotes below the table.
\begin{table}[htbp]
\begin{center}\begin{minipage}{\textwidth}
\begin{tabular}{| c | p{130pt} | l |}
\hline
Column 1 & Column 2 \newline (additional line) & Column 3 \\
\hline
C1,R2 & C2,R2 & C2,R3 \\
\hline
C1,R3 & \multicolumn{2}{| c |}{C2\&C3,R3} \\
\hline
C1,R4 & C2,R4\footnote{Footnote to table~\ref{tab:table1}} & C3,R4\\
\hline
\end{tabular}
\end{minipage}
\caption{Table 1}
\label{tab:table1}
\end{center}
\end{table}
Examples of different text sizes:
\small Small \\
\scriptsize Script size \\
\normalsize Normal \\
\large Large \\
\huge Huge \\
\normalsize
\CHECK
If we reference to another document, we cite the document \cite{Lamport:LaTeX}.
%** landscape
\NEW
\begin{landscape}
Of some interest is also the landscape environment:
\end{landscape}
\verbatiminput{filename.txt}
Even though we don't think full listings are useful in documents,
you can easily insert complete files by the verbatiminput{}-command.

View File

@ -0,0 +1,2 @@
\chapter{\label{results}Title}
The results from your evaluations.

View File

@ -0,0 +1,3 @@
\chapter{\label{summary}Title}
Sum up what you have done and recapitulate your key findings.

Binary file not shown.

View File

@ -0,0 +1,116 @@
%%****************************************************************************
%** Copyright 2002, 2003 by Lukas Ruf, <ruf@topsy.net>
%** Information is provided under the terms of the
%** GNU Free Documentation License <http://www.gnu.org/copyleft/fdl.html>
%** Fairness: Cite the source of information, visit <http://www.topsy.net>
%****************************************************************************
%** Last Modification: 2013-07-31
%** 2005-07-11 Bernhard Tellenbach
%** Switched default document class to: book
%** Added \include{appendix.tex}
%** 2013-07-31 David Gugelmann (gugdavid)
%** Use bibtex for references
%** Added new watermark command
%****************************************************************************
\documentclass[10pt,final,a4paper,twoside]{book}
%\documentclass[10pt,draft,a4paper,oneside]{report}
%\documentclass[10pt,draft,a4paper,oneside]{article}
%**Latex Master Document*********
\newcommand{\watermark}{DRAFT} % a watermark is included on all pages if \watermark is defined here
%** preamble.tex: here all the document-wide settings
% are defined
\input{preamble}
%********************************
%** begin the document environment
\begin{document}
\frenchspacing
\sloppy
%** Title.tex: Title page to be printed first
\input{Title}
%** environments.tex: Predefined Environments
\include{environments}
%**Documentation****************
%** Abstract.tex: Contains a brief description
% of what the reader may expect
\include{Abstract}
%** Table of Contents
\tableofcontents
%** Table of Figures
\listoffigures
%** Table of Figures
\listoftables
%** Introduction.tex: Contains an introduction to
% the topic and motivates the work.
% State what the reader can find where.
\include{Introduction}
%** Problem.tex: Documentation in own words of the problem to
% be addressed in this document:
% What is the challenge, why is it useful what you
% plan to do.
\include{Problem}
%** Design.tex: How was the problem attacked, what was the design
% the architecture
\include{Design}
%** Results.tex: What were the results achieved including an evaluation
%
\include{Results}
%** Outlook.tex: What needs to be done further, what is planed
%
\include{Outlook}
%** Summary.tex: What have you achieved, what have you presented in this
% document. What are the highlights of your work.
% It should conclude by a conclusion.
\include{Summary}
%** Switch to appendix-mode in Latex.
%
\appendix
%** I would like to have the appendices enumerated by Alphabetical
% characters.
\renewcommand{\thepart}{\Alph{part}}
%** appendix.tex: Install instructions, configurations, test results,
% simulation data, additional theoretical disquisitions, ...
%
\include{appendix}
%** Timetable.tex: Timetable you worked out.
%
\include{Timetable}
%** Originalproblem.tex: The problem statement you received.
%
\include{Originalproblem}
%** bibtex is used to automatically generate the bibliography
% references are stored in refs/refs.bib
% use a bibliography manager like JabRef (http://jabref.sourceforge.net/) to manage refs/refs.bib
\bibliographystyle{abbrv}
\bibliography{refs/refs}
%** end the document environment
\end{document}

View File

@ -0,0 +1,2 @@
\chapter{\label{timetable}Title}
Here may come your thesis schedule (the original plan and ev. the actual outcome).

View File

@ -0,0 +1,44 @@
%****************************************************************************
%** Copyright 2002 by Lukas Ruf, ruf@topsy.net
%** Information is provided under the terms of the
%** GNU Free Documentation License http://www.gnu.org/copyleft/fdl.html
%** Fairness: Cite the source of information, visit http://www.topsy.net
%****************************************************************************
%** Extensions:
%** January 2003: Thomas Duebendorfer <thomas@duebendorfer.ch>
%** changed the former ETH Header to the new, official one that is
%** mandatory since January 2003.
%****************************************************************************
%****************************************************************************
%** Extensions:
%** January 2005: Bernhard Tellenbach <bernhard.tellenbach@airmail.ch>
%** changed the way the ETH Header is included. Slight modification of the
%** content.
%****************************************************************************
\begin{titlepage}
\begin{center}
\begin{figure}[!t]
\includegraphics{TIKETHhdr}
\end{figure}
\end{center}
\vspace{2 cm}
{\large FirstName Name}
\vspace{2 cm}
{\Huge Thesis Title}\\
\vspace{\fill}
(Master/Semester) Thesis (MA/SA)-20XX-XX\\
July 2005 to January 2006\\
\vspace{1cm}
Tutor: \\
Co-Tutor: \\
Supervisor: \\
\end{titlepage}

View File

@ -0,0 +1,42 @@
%%****************************************************************************
%** Copyright 2005 by Bernhard Tellenbach, <bernhard.tellenbach@airmail.ch>
%** Information is provided under the terms of the
%** GNU Free Documentation License <http://www.gnu.org/copyleft/fdl.html>
%****************************************************************************
%****************************************************************************
%** Last Modification: 2005-07-11 1600
%** 2005-07-11 Updated the syntax to match the current nomencl packet
%****************************************************************************
\chapter{\label{appendixA}Title}
\section{\label{chapterA:section1}Section 1}
\begin{verbatim}
All is presented exactely the way you write it.
Page boundaries are not checked.....................................................................................
\end{verbatim}
\chapter{\label{appendixB}Title}
%Entries for the list of abbrevations:
%
%To generate the list of abbrevations, execute:
%makeindex Thesis.nlo -s nomencl.ist -o Thesis.nls
%
%If you are using TeXniCenter, specify:
%"%bm.nlo" -s nomencl.ist -o "%bm.nls"
%as beeing the argument list for makeindex.
%---------------------------------------------------------------------------------------------------------
%For old nomencl package uncomment this:
%\printglossary
%For new nomencl package uncomment this:
\printnomenclature
\abbrev{XCA}{\markup{X}tremely \markup{C}ool \markup{A}bbrevations}

View File

@ -0,0 +1,5 @@
\chapter{\label{conclusionoutlook}Conclusion and Outlook}
\section{\label{conclusionoutlook:conclusion}Conclusion}
\section{\label{conclusionoutlook:outlook}Outlook}

View File

@ -0,0 +1,19 @@
%****************************************************************************
%** Copyright 2002 by Lukas Ruf, ruf@topsy.net
%** Information is provided under the terms of the
%** GNU Free Documentation License http://www.gnu.org/copyleft/fdl.html
%** Fairness: Cite the source of information, visit http://www.topsy.net
%****************************************************************************
\newenvironment{sourcecode}%
{\vspace{0.5 cm} \footnotesize \verbatim}%
{\endverbatim \normalsize \vspace{0.5 cm}}
\newenvironment{inputverb}[1]%
{\vspace{0.5 cm} \footnotesize \verbatiminput{#1}}%
{\normalsize \vspace{0.5 cm}}
\newenvironment{inputverb_nospace}[1]%
{\footnotesize \verbatiminput{#1}}%
{\normalsize}

View File

@ -0,0 +1,2 @@
This is an embedded
text piece in verbatim mode.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,167 @@
%****************************************************************************
%** Copyright 2001, 2002, 2003, 2004 by Lukas Ruf, <lukas.ruf@lpr.ch>
%** Information is provided under the terms of the
%** GNU Free Documentation License <http://www.gnu.org/copyleft/fdl.html>
%** Fairness: Cite the source of information, visit <http://www.topsy.net>
%****************************************************************************
%** Last Modification: 2013-07-31
%** 2004-02-17: Lukas Ruf
%** Added recommendation by Thomas Duebendorfer
%** Added different babel languages
%** Added more comments
%** 2004-10-16: Lukas Ruf
%** More comments
%** Added subfigure
%** 2005-07-11 Bernhard Tellenbach
%** Added \abbrev command to generate a list of abbrevations
%** Removed support for psfig and epsfig (old)
%** Adapted syntax for new nomencl packet version
%** 2013-07-31 David Gugelmann (gugdavid)
%** Adapted for pdflatex
%** Added hyperref
%** Style of headers modified, adapted watermark command
%****************************************************************************
\RequirePackage{times}
\usepackage[english]{babel}
%-% \usepackage[german]{babel}
%-% \usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{type1cm}
\usepackage{a4}
\usepackage{hyperref}
\hypersetup{colorlinks,%
citecolor=black,%
filecolor=black,%
linkcolor=black,%
urlcolor=black,%
pdftex}
\usepackage[pdftex]{color,graphicx} % pdftex does not read eps files -> use epstopdf to convert files
\graphicspath{{Figures/},{logos/}}
\usepackage{caption}
\usepackage{subcaption} % caption/subcaption replaces subfigure, which is deprecated
\usepackage{fancyhdr}
\usepackage{fancybox}
\usepackage{float}
\usepackage{longtable}
\usepackage{paralist}
\usepackage{url}
\usepackage{portland}
\usepackage{lscape}
\usepackage{moreverb}
\usepackage{nomencl}
\let\abbrev\nomenclature
\renewcommand{\nomname}{List of Abbrevations}
\setlength{\nomlabelwidth}{.25\hsize}
\renewcommand{\nomlabel}[1]{#1 \dotfill}
\setlength{\nomitemsep}{-\parsep}
%For old nomencl package, uncomment this:
\makeglossary
%For new nomencl package, uncomment this:
%\makenomenclature
\usepackage[normalem]{ulem}
\newcommand{\markup}[1]{\uline{#1}}
%% Thanks to Thomas Duebendorfer: Should create smoother fonts
\usepackage{ae,aecompl}
\addtolength{\textwidth}{2cm}
\addtolength{\textheight}{2cm}
\addtolength{\oddsidemargin}{-1.0cm}
\addtolength{\evensidemargin}{-1.0cm}
\addtolength{\topmargin}{-1.5cm}
%% No Serifs: Put comment markers in front of the next three lines otherwise
\renewcommand{\ttdefault}{cmtt}
\renewcommand{\rmdefault}{phv} % Helvetica for roman type as well as sf
\renewcommand{\ttdefault}{pcr} % use Courier for fixed pitch, if needed
\newcommand{\?}{\discretionary{/}{}{/}}
\newcommand{\liter}[0]{/home/ruf/Lib/Bibl/}
\newcommand{\fref}[1]{\mbox{Figur~\ref{#1}}}
\pagestyle{fancy}
%%-lpr Note: 'chapters' are defined for 'book's only
%%-lpr in articles, we make use of sections only
%%-lpr \renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\bfseries\rightmark}
\fancyhead[RE]{\bfseries\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\addtolength{\headheight}{0.5pt}
\fancypagestyle{plain}{%
\fancyhf{}
\fancyfoot[C]{\bfseries \thepage}
\fancyhead{}%get rid of headers on plain pages
\renewcommand{\headrulewidth}{0pt} % an the line
}
\newcommand{\clearemptydoublepage}{\newpage{\pagestyle{empty}\cleardoublepage}}
\setlength{\parindent}{0in}
\hyphenation{Lukas not-to-hyphen-else-where}
\newcommand{\Appendix}[2][?]
{
\refstepcounter{section}
\addcontentsline{toc}{appendix}
{
\protect\numberline{\appendixname~\thesection} %1
}
{
\flushright\large\bfseries\appendixname\ \thesection\par
\nohypens\centering#1\par
}
\vspace{\baselineskip}
}
\let\margin\marginpar
\newcommand\myMargin[1]{\margin{\raggedright\scriptsize #1}}
\renewcommand{\marginpar}[1]{\myMargin{#1}}
\newcommand\CHECK{\myMargin{CHECK}}
\newcommand\NEW{\myMargin{NEW}}
%% adapt headers %%
% from http://www.markschenk.com/tensegrity/latexexplanation.html
% Result:
% - No headers on empty pages before new chapter
% - To avoid header on other pages (e.g. in the abstract), set pagestlye to plain
\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}
\thispagestyle{plain}
\newpage
\if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother
%% allow to set a watermark %%
% from http://www.goodcomputingtips.com/site/2010/06/how-to-insert-watermark-in-latexpdflatex-documents/
% - to include a watermark, define \watermark in the main document, e.g.: \newcommand{\watermark}{MY WATERMARK TXT}
\ifdefined\watermark
\usepackage{graphicx,type1cm,eso-pic,color}
\makeatletter
\AddToShipoutPicture{
\setlength{\@tempdimb}{.5\paperwidth}
\setlength{\@tempdimc}{.5\paperheight}
\setlength{\unitlength}{1pt}
\put(\strip@pt\@tempdimb,\strip@pt\@tempdimc){
\makebox(0,0){\rotatebox{55}{\textcolor[gray]{0.95}
{\fontsize{5cm}{5cm}\selectfont{\watermark}}}}
}
}
\makeatother
\fi

View File

@ -0,0 +1,4 @@
It's highly recommended to use a bibliography reference manager to manage refs.bib.
For example JabRef proofed to work fine, get it from:
http://jabref.sourceforge.net/

View File

@ -0,0 +1,6 @@
@BOOK{Lamport:LaTeX,
AUTHOR = "Leslie Lamport",
TITLE = "LaTeX User's Guide and Document Reference Manual",
PUBLISHER = "Addison-Wesley Publishing Company",
ADDRESS = "Reading, Massachusetts",
YEAR = "1986"}