我又带着新问题回来了。
我尝试使用 beamerposter 制作海报。现在我想用 tikz 画一个箭头,但我收到此错误消息pgfkeys: I do not know the key '/tikz/triangle 60'
这是我正在使用的代码
\documentclass[final,hyperref={pdfpagelabels=false}]{beamer}
\usepackage[orientation=portrait,size=a0,scale=1.4]{beamerposter}
\usetheme{}
\usepackage[english]{babel}
\usepackage{tikz}
\usetikzlibrary{arrows,calc,automata,shapes.arrows}
\usepackage{graphicx}
\begin{document}
\begin{frame}[t]
\begin{columns}[t]
\begin{column}{.02\textwidth}\end{column}
\begin{column}{.465\textwidth}
\begin{block}{TITLE}
\begin{tikzpicture}[baseline={([yshift=-15pt]current bounding box.north)},line width=6pt]
\draw[->,stealth'](0,0)--(1.2,0);
\end{tikzpicture}
\end{block}
\end{column}
\end{columns}
\end{frame}
\end{document}
有人知道我为什么会收到这个错误吗?
多谢!