我使用 Xournal++ 的 LaTeX 模板
% This template avoids the scontents package, which is only available on relatively recent TeX distributions
\documentclass[varwidth=true, crop, border=5pt]{standalone}
% Packages
\usepackage{amsmath}
\usepackage{amssymb}
% Blank formula checking
\usepackage{ifthen}
\newlength{\pheight}
% Color support
\usepackage{xcolor}
\definecolor{xpp_font_color}{HTML}{%%XPP_TEXT_COLOR%%}
% User input
\def\preview{\(
\displaystyle
%%XPP_TOOL_INPUT%%
\)%
}
\begin{document}
% Check if the formula is empty
\settoheight{\pheight}{\preview}
\ifthenelse{\pheight=0}{\GenericError{}{xournalpp:blankformula}{}{}}
\newcommandx{\graph}[3][1=,2=]{
\begin{tikzpicture}[scale=.5]
\begin{axis}[xlabel=$x$,ylabel=$y$, axis lines=center,samples=100, #2]
\addplot[#1]{ #3 };
\end{axis}
\end{tikzpicture}
}
% Render the user input
\textcolor{xpp_font_color}{\preview}
\end{document}
上述命令的输出为:
但是我想编辑上述命令 $\graph$,使得输出图形看起来像这样,并支持同一张图表上的多个函数,并且 x,y 的域仅为零或正值:
我们如何编辑上述命令以使输出看起来像上图一样,同时添加对任意数量函数的支持?谢谢你的帮助。