图片环境“旋转”文本

图片环境“旋转”文本

我想知道如何旋转图片环境中的文本。

我想从下到上排版一些文本,使其显示侧身

基本上,以下内容

\begin{picture}(...,...)
  \put(0,0){\rotate{-90}{Text.}}
\end{picture}

应该打印如下

这里应该有一些文本以*侧面*出现...现在,我又把它放在哪里了?

(文本的背景是灰色,因为这样更有趣!)

答案1

您可以rotateboxgraphicx包装中使用。

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{picture}(50,50)
  \put(0,0){\rotatebox{90}{Text}}
\end{picture}
\end{document}

相关内容