Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/walmes/Tikz
Galley of Tikz drawings.
https://github.com/walmes/Tikz
gallery latex pgf tikz
Last synced: 1 day ago
JSON representation
Galley of Tikz drawings.
- Host: GitHub
- URL: https://github.com/walmes/Tikz
- Owner: walmes
- Created: 2015-12-30T00:54:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-08-30T13:54:21.000Z (about 2 years ago)
- Last Synced: 2024-08-03T12:16:14.387Z (3 months ago)
- Topics: gallery, latex, pgf, tikz
- Language: R
- Homepage: http://leg.ufpr.br/~walmes/Tikz/
- Size: 14.5 MB
- Stars: 440
- Watchers: 33
- Forks: 75
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- awesome-TikZ - walmes/Tikz - Collection of TikZ art from Prof. Walmes M. Zeviani, contains about 200 TikZ figures, most of which were done to teach statistics. (Gallery)
- jimsghstars - walmes/Tikz - Galley of Tikz drawings. (R)
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"}
```