Index: user/glebius/course/08.io2/Makefile =================================================================== --- user/glebius/course/08.io2/Makefile (nonexistent) +++ user/glebius/course/08.io2/Makefile (revision 258624) @@ -0,0 +1,17 @@ +NAME?= lection + +TMP= $(NAME).aux $(NAME).log $(NAME).nav $(NAME).out $(NAME).snm \ + $(NAME).toc $(NAME).vrb + +.MAIN: $(NAME).pdf + +.SUFFIXES: .pdf .tex +.tex.pdf: + pdflatex -file-line-error -halt-on-error ${.IMPSRC} + +clean: + rm -f -- $(TMP) texput.log + +cleanall: + make clean + rm -f $(NAME).pdf Property changes on: user/glebius/course/08.io2/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: user/glebius/course/08.io2/lection.tex =================================================================== --- user/glebius/course/08.io2/lection.tex (nonexistent) +++ user/glebius/course/08.io2/lection.tex (revision 258624) @@ -0,0 +1,28 @@ +\documentclass{beamer} + +\usepackage[utf8]{inputenc} +\usepackage[russian]{babel} +\usepackage{tikz} +\usepackage{adjustbox} +\usepackage{url} +\usepackage{array} +\usepackage{xcolor} +\usepackage{listings} +\usepackage{verbatim} +\usepackage{ifthen} + +\usetikzlibrary{positioning} +\usetikzlibrary{shapes} +\usetikzlibrary{decorations.pathmorphing} + +\input{../course.tex} + +\title{Input/Output system: GEOM} + +\begin{document} + +\begin{frame} +\titlepage +\end{frame} + +\end{document}