commit 57143eb7a91769a3f88a5b7a9096f5fb12e9e7fd Author: Kacper Donat Date: Mon Apr 9 21:38:25 2018 +0200 Commit na dobry początek diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8c8e152 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +## tex +*.aux +*.lof +*.log +*.lot +*.fls +*.out +*.toc +*.fmt +*.fot +*.cb +*.cb2 +.*.lb +*.pdf +*.xdv +*-figure* + + +## Build tool auxiliary files: +*.fdb_latexmk +*.synctex +*.synctex(busy) +*.synctex.gz +*.synctex.gz(busy) +*.pdfsync +*.auxlock + +# hyperref +*.brf + +# listings +*.lol + +# makeidx +*.idx +*.ilg +*.ind +*.ist diff --git a/README.md b/README.md new file mode 100644 index 0000000..c6091c9 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# PR - Projekt + +Jeżeli tu trafiłeś - współczuję. + +## Sprawozdanie + +Sprawko jest w folderze `./sprawozdanie/`, LaTeX jaki jest, każdy widzi. Polecany sposób kompilacji za pomocą [latexmk]: + +```bash +latexmk .\sprawozdanie.tex -bibtex- -quiet -pvc -pdf -f -file-line-error -xelatex +``` + +W wypadku braku chęci do instalacji perla: +```bash +xelatex sprawozdanie.tex +``` + +ew. `xelatex` zamiast `pdflatex`, może działać lepiej. Prawdopodobnie będzie trzeba uruchomić z 2-3 razy, aby poprawnie +się referencje wygenerowały. + +## Kod + +Projekt tu się kiedyś pojawi, ogólnie kod w folderze `./src/`, jeżeli będzie nam się chciało. diff --git a/sprawozdanie/sprawozdanie.tex b/sprawozdanie/sprawozdanie.tex new file mode 100644 index 0000000..00b2b5d --- /dev/null +++ b/sprawozdanie/sprawozdanie.tex @@ -0,0 +1,55 @@ +\documentclass[]{article} +\usepackage[T1]{fontenc} +\usepackage{polski} +\usepackage[utf8]{inputenc} +\usepackage[margin=1.25in]{geometry} +\usepackage{alltt} +\usepackage{titling} +\usepackage{pdfpages} +\usepackage{float} +\usepackage{amsmath} +\usepackage{booktabs} +\usepackage{tabularx} +\usepackage{amstext} +\usepackage{pgfplots} +\usepackage{tikz} +\usepackage{xspace} +\usepackage{enumerate} +\usepackage{lmodern} +\usepackage{amsfonts} +\usepackage{mathtools} +\usepackage{alphalph} +\usepackage{algorithm} +\usepackage{algpseudocode} +\usepackage{wrapfig} +\usepackage[polish]{babel} +\usepackage{braket} +\usepackage{subcaption} +\usepackage{multirow} + +\pgfplotsset{compat=1.15} +\usepgfplotslibrary{groupplots} +\usepgfplotslibrary{external} + +\usetikzlibrary{decorations.pathmorphing, arrows.meta, positioning} +\usetikzlibrary{shapes.geometric, arrows, intersections} + +% opening +\title{Przetwarzanie Rozproszone - Projekt} +\author{\protect\begin{tabular}{lll} + Weronika Czarnecka & \textit{165600} & \multirow{4}{*}{Informatyka gr. 1, Semestr IV} \tabularnewline + Anna Piliczewska & \textit{165436} & \tabularnewline + Maciej Borzyszkowski & \textit{165407} & \tabularnewline + Kacper Donat & \textit{165581} & % +\protect\end{tabular}} + +\floatname{algorithm}{Program} + +\begin{document} + +\maketitle + +\section{Cel projektu} +Też go szukam + +\end{document}