如何在其他方向书写任何文本

如何在其他方向书写任何文本

如何在四个不同的位置转换文本方向?

在此处输入图片描述

任何文本。

答案1

您可以使用以下包\scalebox来执行此操作graphicx

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\LaTeX\scalebox{-1}[1]{\LaTeX}

\scalebox{1}[-1]{\LaTeX}\scalebox{-1}[-1]{\LaTeX}

\end{document}

在此处输入图片描述

TikZ是另一种选择:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}

\begin{document}

\begin{tikzpicture}
\node (a) {\LaTeX};
\node[xscale=-1,right=of a] (b) {\LaTeX};
\node[yscale=-1,below=of a] (c) {\LaTeX};
\node[xscale=-1,yscale=-1,right=of c]{\LaTeX};
\end{tikzpicture}

\end{document}

在此处输入图片描述

PSTricks提供\psscalebox

\documentclass{article}
\usepackage{pstricks}

\begin{document}

\noindent\LaTeX\psscalebox{-1 1}{\LaTeX}\\
\psscalebox{1 -1}{\LaTeX}\psscalebox{-1 -1}{\LaTeX}

\end{document}

在此处输入图片描述

相关内容