This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(async () => { | |
const url = 'https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt'; | |
const res = await fetch(url); | |
const text = await res.text(); | |
const lines = text.split('\n'); | |
const digitEntries = []; | |
for (const line of lines) { | |
if (!line.trim()) continue; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(async () => { | |
const [unicodeDataTxt, scriptsTxt] = await Promise.all([ | |
fetch('https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt').then(res => res.text()), | |
fetch('https://www.unicode.org/Public/UCD/latest/ucd/Scripts.txt').then(res => res.text()), | |
]); | |
const scriptMap = []; | |
// Parse Scripts.txt to map codepoint ranges → script | |
for (const line of scriptsTxt.split('\n')) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{tikz} | |
\definecolor{flameOuter}{HTML}{33AAFF} | |
\pgfdeclareradialshading{multigradient}{\pgfpoint{0cm}{0cm}}{% | |
color(0cm)=(white); | |
color(0.5cm)=(white); | |
color(1cm)=(flameOuter) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage[dvipsnames]{xcolor} | |
\usepackage{tikz} % Required for creating graphics | |
\begin{document} | |
\section*{Example of a `Flame' like effect in Tikz} | |
\definecolor{flameOuter}{HTML}{33AAFF} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hello world |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\begin{document} | |
Hello world! | |
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{standalone} | |
\usepackage{tikz} | |
\usepackage[sfdefault]{FiraSans} | |
\usepackage{xcolor} | |
\begin{document} | |
\begin{tikzpicture} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{tikz} | |
\usepackage{mathtools} | |
\begin{document} | |
\begin{tikzpicture} | |
\foreach \x in {140,143,...,210} { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\begin{document} | |
\begin{table}[h] | |
\centering | |
\begin{tabular}{|l|c|} | |
\hline | |
Pittsburgh & 100 \\ | |
\hline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{tikz} | |
\usepackage[utf8]{inputenc} | |
\usepackage{amsmath} | |
\begin{document} | |
\begin{tikzpicture} | |
% Draw ovals first | |
\fill[red!50] (0, 0.8) ellipse (6cm and 3.8cm); |
NewerOlder