web_AI-5/docs/doku.org

48 lines
815 B
Org Mode
Raw Normal View History

2017-10-29 21:03:20 +01:00
#+TITLE: Casestudy Webtechnologien
#+SETUPFILE: ~/git_repos/notes/settings/html_theme/setup/theme-readtheorg.setup
2017-10-30 07:54:24 +01:00
#+AUTHOR: Ivan Hörler Andreas Zweili
#+LaTeX_CLASS: article
#+LATEX_CLASS_OPTIONS: [a4paper,11pt]
#+LaTeX_HEADER: \input{style}
2017-10-29 21:03:20 +01:00
* Section
** Subsection
*** Subsubsection
- List
- List
- List
*** Subsubsection
1. Numbered List
2. Numbered List
3. Numbered List
*** Table
| Name | Funktion | Beschreibung |
|------+----------+--------------|
| | | |
| | | |
| | | |
*** Code Block
2017-10-30 07:54:24 +01:00
#+CAPTION: Python Code Block
2017-10-29 21:03:20 +01:00
#+BEGIN_SRC python
for var in collection:
while variable = True:
#+END_SRC
2017-10-30 07:54:24 +01:00
#+CAPTION: SQL Code Block
2017-10-29 21:03:20 +01:00
#+BEGIN_SRC sql
create FUNCTION functionname()
RETURNS varchar(100)
AS BEGIN
END
go
#+END_SRC