如何在四个不同的位置转换文本方向?
任何文本。
答案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}