https://tikzjax-demo.glitch.me/
是否可以在 TikZJax 中使用库?
我测试
\tikzset{
background rectangle/.style={fill=red, rounded corners},
show background rectangle,
}
第二个链接没有成功。
\documentclass[margin=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\begin{document}
\begin{tikzpicture}[]
\tikzset{
background rectangle/.style={fill=red, rounded corners},
show background rectangle,
}
\draw (0,0) circle (1in);
\end{tikzpicture}
\end{document}
答案1
drgrice1 的叉子也许可以做到这一点,但是很难构建(我从未成功过)。本布雷叉提供了一个用于构建的 Dockerfile,我按照 Dockerfile 的构建指南进行操作并成功了。
您可以尝试像这样放置您的代码(无需添加\documentclass{standalone}
和\usepackage{tikz}
):
\usetikzlibrary{backgrounds}
\begin{document}
\begin{tikzpicture}[]
\tikzset{
background rectangle/.style={fill=red, rounded corners},
show background rectangle,
}
\draw (0,0) circle (1in);
\end{tikzpicture}
\end{document}
进入我的现场演示:https://bill-ion.github.io/tikzjax-live/,结果会自动出现在右侧的框中。