Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sozelfist/LaTeX-TikZ
This LaTeX TikZ project is a collection of pictures generated using the TikZ library.
https://github.com/sozelfist/LaTeX-TikZ
latex pgf-figures pgfplots tikz tikz-figures
Last synced: about 1 month ago
JSON representation
This LaTeX TikZ project is a collection of pictures generated using the TikZ library.
- Host: GitHub
- URL: https://github.com/sozelfist/LaTeX-TikZ
- Owner: sozelfist
- License: mit
- Created: 2022-01-01T12:51:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-31T09:39:05.000Z (about 1 year ago)
- Last Synced: 2024-09-05T02:01:38.301Z (5 months ago)
- Topics: latex, pgf-figures, pgfplots, tikz, tikz-figures
- Language: TeX
- Homepage:
- Size: 12.1 MB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# LaTeX-TikZ
📚 This is a repository for storing and sharing **LaTeX-TikZ** and **PGFPlots** pictures.
## Require
[![windows](https://img.shields.io/badge/windows-11-blue?logo=windows&logoColor=blue&labelColor=000000)](https://www.microsoft.com/en-us/windows?r=1)
[![git](https://img.shields.io/badge/Git-2.34.1.windows.1-f05032?logo=git&labelColor=000000)](https://git-scm.com/)
[![github](https://img.shields.io/badge/GitHub-000000?logo=github&logoColor=181717&labelColor=white)](https://github.com)
[![VSCode](https://img.shields.io/badge/Visual_Studio_Code-1.63.2-1f425f.svg?logo=visual-studio-code&logoColor=007acc&labelColor=000000)](https://code.visualstudio.com/)
[![texlive](https://img.shields.io/badge/TeXLive-2021-teal?logo=latex&logoColor=teal&labelColor=000000)](https://tug.org/texlive/)
[![latex-workshop](https://img.shields.io/badge/latex_workshop-8.23.0-007acc?logo=visual-studio-code&logoColor=007acc&labelColor=000000)](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop)## Usage
```sh
# clone the repo
$ git clone https://github.com/TruongNhanNguyen/LaTeX-TikZ.git
# navigate to specify folder
$ cd
# example
# cd TikZ/GitHubProfilePicture
# compile .tex to .pdf
$ pdflatex main.tex
```## My Github Profile Picture
![github](TikZ/GitHubProfilePicture/github-profile-picture.png)
```latex
\documentclass[tikz, border=10pt]{standalone}\usepackage{tikz}
\usetikzlibrary{trees, snakes}
\usepackage{xcolor}\tikzset{
level 1/.style = {sibling angle=120},
level 2/.style = {sibling angle=60},
level 3/.style = {sibling angle=30},
every node/.style = {fill},
edge from parent/.style = {snake=expanding waves, segment length=1mm, segment angle=10, very thick, draw}
}\begin{document}
\begin{tikzpicture}[grow cyclic, shape=circle, level distance=13mm ,cap=round]
\node {} child [color=\A] foreach \A in {red, green, blue} {
node{} child [color=\A!50!\B] foreach \B in {red, green, blue}{
node{} child[color=\A!50!\B!50!\C] foreach \C in {black, gray, white}{
node{}
}
}
};
\end{tikzpicture}
\end{document}
```## My LaTeX Workshop extensions `.config`
I placed all settings of **LaTeX Workshop** ext here
[`latex-workshop.json`](.config/latex-workshop.json)## How to write LaTeX on Visual Studio Code
To do that, you simply just install TeXLive and LaTeX Workshop extension. You can get more detail information about how to do it [here](.config/install-latex-vscode.md).