牙套旋转

牙套旋转

如何旋转支架以使其显示这边走

我目前正在使用这个代码:

\documentclass[french]{beamer}
\usepackage{tikz}
\usetikzlibrary{fit,calc,positioning,decorations.pathreplacing,matrix}
\begin{document}
\begin{frame}
\begin{tikzpicture}[decoration={brace}][scale=2] 
\node [rotate=270] (A) {\fontsize{8}{8}\selectfont A}; 
\node [fit=(A)] (fit) {};              
\draw [decorate,line width=1pt] 
  ([yshift=7pt]fit.south west) -- ([yshift=-7pt]fit.north west);
\end{tikzpicture}
\end{frame}
\end{document}

提前致谢!

答案1

CW 来自评论:

使用键作为镜像路径装饰mirror的一部分。结果产生了一个丑陋的缩短括号,但我假设实际用例有更多内容,因此这个问题会消失。decoration

\documentclass[french]{beamer}
\usepackage{tikz}
\usetikzlibrary{fit,calc,positioning,decorations.pathreplacing,matrix}
\begin{document}
\begin{frame}
\begin{tikzpicture}[decoration={brace,mirror}][scale=2] 
\node [rotate=270] (A) {\fontsize{8}{8}\selectfont A}; 
\node [fit=(A)] (fit) {};              
\draw [decorate,line width=1pt] 
  ([yshift=7pt]fit.south west) -- ([yshift=-7pt]fit.north west);
\end{tikzpicture}
\end{frame}
\end{document}

在此处输入图片描述

相关内容