Andrea Gus před 9 roky
rodič
revize
9bfa3759ec
2 změnil soubory, kde provedl 36 přidání a 0 odebrání
  1. 13 0
      source/Makefile
  2. 23 0
      source/db2-presentation.tex

+ 13 - 0
source/Makefile

@@ -0,0 +1,13 @@
+.PHONY: clean all live pdf
+
+all:
+	        latexmk -pdf -pv db2-presentation
+
+live:
+	        latexmk -pdf -pvc -silent db2-presentation
+
+clean:
+	        latexmk -C
+
+pdf: all
+	        cp db2-presentation.pdf ../DB2-Presentation.pdf

+ 23 - 0
source/db2-presentation.tex

@@ -0,0 +1,23 @@
+\documentclass{beamer}
+ 
+\usepackage[utf8]{inputenc}
+ 
+ 
+%Information to be included in the title page:
+\title{Sample title}
+\author{Anonymous}
+\institute{ShareLaTeX}
+\date{2014}
+ 
+ 
+ 
+\begin{document}
+ 
+\frame{\titlepage}
+ 
+\begin{frame}
+\frametitle{Sample frame title}
+This is a text in first frame. This is a text in first frame. This is a text in first frame.
+\end{frame}
+ 
+\end{document}