GitXplorerGitXplorer
s

LaTeX-TikZ

public
9 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
5b38c41a0d212a9e5c478471c4f0ed767589da0f

Merge pull request #1 from TruongNhanNguyen/actions

ssozelfist committed 2 years ago
Verified
c679093aea7898c840ef254bd68a99d6faf98a4c

actions: update building workflow

ssozelfist committed 2 years ago
Verified
e043d7bc059e0ce9f77b642c0d4535e33d7d396b

workflow: add workflow for building TeX project

ssozelfist committed 2 years ago
Unverified
a573229f06e5c9c4d6d77091cc6d0eac83a4b474

feat{tikz}: visualize sum of 2 vecs using triangle rule

ssozelfist committed 3 years ago
Unverified
98331b8cb6cce27b2f1aa44b7b13e0ba8bafd71a

feat(tikz): draw pascal's straight line

ssozelfist committed 3 years ago
Unverified
54277762a42e45cc215e7e176c5d80c7e4b561c3

feat(TikZ): draw Bernoulli pipe

ssozelfist committed 3 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.