Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/walmes/Tikz

Galley of Tikz drawings.
https://github.com/walmes/Tikz

gallery latex pgf tikz

Last synced: about 2 months ago
JSON representation

Galley of Tikz drawings.

Awesome Lists containing this project

README

        

---
title: "Tikz Gallery"
author: "Prof. Walmes M. Zeviani"
output:
html_document:
css: style.css
keep_md: true
toc: true
number_sections: false
---

```{r setup, include=FALSE}
opts_chunk$set(echo = FALSE,
comment = NA,
results = "asis",
error = FALSE,
warning = FALSE,
message = FALSE)
a <- "```tex"
b <- "```"
```
```{r, include=FALSE}
file.remove("child.Rmd")
tmp <- readLines("template.Rmd")

pgf <- sub(x = list.files(path = "./src/", pattern = "*.pgf"),
pattern = "\\.pgf$",
replacement = "")
png <- sub(x = list.files(path = "./src/", pattern = "*.png"),
pattern = "\\.png$",
replacement = "")

# Lista de arquivos que tem os pares pgf e png.
i <- intersect(pgf, png)
sapply(i,
FUN = function(i){
tmpi <- gsub(x = tmp,
pattern = "&PGF_FILE&",
replacement = i)
cat(tmpi,
file = "child.Rmd",
append = TRUE,
sep= "\n")
})
```

This is my collection, or gallery, of Tikz Art. The official Tikz
Gallery is on [TeXample.net](http://www.texample.net/tikz/examples/). A
interesting exposition of Tikz features is done in
. The official
manual is available at
.

There are `r length(i)` Tikz figures in this gallery. Most of them were
done to teach statistics, inspired by content on the web or done from
the scratch. Also, a lot were caught in the web and copied with few
modifications (I run tests on it).

I use [ktikz editor](https://apps.ubuntu.com/cat/applications/ktikz/) to
edit these Tikz files.

This repository is maintained in to Git Version Control and is hosted on
[GitHub](https://github.com/walmes/Tikz).

If you want to reproduce these figures, do not forget of seeing the
corresponding preamble that list all tikz libraries used:
[TIKZ_PREAMBLE.pgs](https://github.com/walmes/Tikz/blob/master/src/TIKZ_PREAMBLE.pgs).

The figures are in file file order. A page with all figures displayed
in on (updated less frequently).

Some useful tutorials or galleries:

* .
* .
* .

```{r, child = "child.Rmd"}
```