GitXplorerGitXplorer
s

LaTeX-TikZ

public
9 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
623a497b577d1d981e5d4903a451b2cd75dda05b

CI: update `build.yml`

ssozelfist committed a year ago
Verified
65bea184c23e852e9e9faba14a9c061db986f9a1

fix(workflow): fix syntax error

ssozelfist committed 2 years ago
Verified
94d83e1c0a8d655fd1ff0f85acf30de70c4dfe1e

fix(workflow): add error handling when compiling

ssozelfist committed 2 years ago
Verified
465df473d35f79790dc2db5b6be8a462a164e76c

feat(tikz/logo): add OpenAI logo

ssozelfist committed 2 years ago
Verified
d05303a541a4e43f49fb9088957941a5414b1d3d

Merge pull request #2 from TruongNhanNguyen/contribution_guidelines

ssozelfist committed 2 years ago
Verified
1b681c6cc887f2da76cd281d4e5cc464f3f5e24e

constributing: add pull request template and contribution guideline

ssozelfist committed 2 years ago

README

The README file for this repository.

LaTeX-TikZ

📚 This is a repository for storing and sharing LaTeX-TikZ and PGFPlots pictures.

Require

windows git github VSCode texlive latex-workshop

Usage

# clone the repo
$ git clone https://github.com/TruongNhanNguyen/LaTeX-TikZ.git
# navigate to specify folder
$ cd <folder-name>
# example
# cd TikZ/GitHubProfilePicture
# compile .tex to .pdf
$ pdflatex main.tex

My Github Profile Picture

github

\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

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.