在同一图形上绘制两条曲线,轴无刻度

在同一图形上绘制两条曲线,轴无刻度

我尝试在同一图形上绘制两条曲线,但轴上没有刻度。Latex 给出错误“尺寸太大”(它只允许我绘制一条曲线)。我该怎么做才能补救这种情况?

\documentclass{article}
\usepackage{graphicx}
\usepackage{pgfplots}
\pgfplotsset{width=10cm,compat=1.15}
\usepackage{physics}
\usepackage{amsmath, amssymb, amsfonts}

\begin{document}

\begin{tikzpicture}
\begin{axis}[
        xlabel={$t$},
        ylabel={$TTR$},
        axis lines=center,
        xmin=0,xmax=4.9,
        ymin=0,ymax=2,
        ytick={0},
        xtick={0}
]

\addplot +[mark=none,smooth] {1-e^(-x)};
\addplot +[mark=none,smooth] {e^(-x)};

\end{axis}
\end{tikzpicture}

\end{document}

非常感谢你的帮助。

答案1

像这样?

在此处输入图片描述

你应该定义函数域。作为上图的基础我使用我的答案关于你之前的问题:

\documentclass[margin=3mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{width=10cm,compat=1.15}
\usetikzlibrary{intersections}
\usepackage{siunitx}

\begin{document}

\begin{tikzpicture}
\begin{axis}[
        xlabel={$t$},
        ylabel={$TTR$},
        axis lines=center,
        ymin=0, ymax=2,
        xtick=\empty,
        ytick=\empty,
        no marks,
        domain=0:5
]

\addplot {1-e^(-x)};
\addplot {e^(-x)};
\end{axis}
\end{tikzpicture}

\end{document}

相关内容