投影机我想特别画一个圆锥体,并附上两条这样的描述:
我正在使用 beamer 环境。我想知道一个允许这样做的代码。曲线可以用箭头或其他东西代替,目的是指向相应区域的名称。
答案1
像这样。
代码
\documentclass{beamer}
\usepackage[utf8]{inputenc}
%\usepackage{pgf,tikz}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{center}
\begin{tikzpicture}
\draw[dashed, thick] (0,0) circle (2cm and 1cm);
\draw[line width=3pt] (-2,0) -- (0,5) -- (2,0);
\begin{scope}
\path[clip] (-2.5,\pgflinewidth) -- (2.5,\pgflinewidth) -- (2,-1.5) -- (-2,-1.5) --cycle;
\draw[line width=3pt] (0,0) circle (2cm and 1cm);
\end{scope}
\node at (-1,-2)(s){Sasaki-Einstein};
\draw[line width=2pt] (s) to[bend right] (1,-1);
\draw[line width=2pt] (2,4) node[above]{Calabi Yau} |- (1,2);
\end{tikzpicture}
\end{center}
\end{frame}
\end{document}