希腊字母的倒置

希腊字母的倒置

如何在 LaTeX 中输入希腊字母,比如 \Omega 沿基线反射?我可能已经包含一张图片来表达我的意思,但无论如何它应该很清楚。如果不清楚:我想以一种方式输入希腊字母,如果有人将打印的纸张旋转 180 度,就会看到一个普通的希腊字母?我想使用 $$,但这些页面 tex.stackexchange.com 无法正确解释它们。

答案1

实现此目的的最佳方法是使用\rotatebox[origin=c]{180}(\someSymbol),来自graphicx。它不依赖于任何未记录的功能,并且不需要对 进行任何调整\raisebox,尽管您可能仍希望添加一个。

有两种不同的方法来解读你的问题:180° 旋转和垂直反射是“颠倒”的两个不同含义,除非你的字形具有双侧对称性,否则它们并不相同。由于垂直反射是 180° 旋转的水平反射,因此你可以用 得到后者\reflectbox{\rotatebox[origin=c]{180}{\someSymbol}}

\documentclass{article}
\usepackage[T1]{fontenc} % Or your font packages of choice.
\usepackage{textcomp}
% To fit this MWE inside the size limits of an image on TeX.SX:
\usepackage[paperwidth=10cm]{geometry}
\usepackage{graphicx}

\begin{document}
The four symmetries of a rectangle form a group \(\mathbf{V}\) of order 4
 isomorphic to a dihedral group, a Klein group, or the Cartesian product
\( \left( \mathbf{Z}_2 \times \mathbf{Z}_2 \right) \).  It is the smallest
non-cyclic group.

We can illustrate it geometrically as the four transformations possible by
reflecting a glyph in a rectangular box, let’s say \(\zeta\), across the
horizontal axis to get \reflectbox{\(\zeta\)}, the vertical axis to get
\raisebox{\depth}{\scalebox{1}[-1]{\(\zeta\)}}, neither to get the original \(\zeta\), or both
to get \raisebox{\depth}{\scalebox{-1}[-1]{\(\zeta\)}}.  The latter is the same as rotating
the rectangle by {180\textdegree} to get \rotatebox[origin=c]{180}{\(\zeta\)}.
Any composition of these operations is another operation.  For example,
rotating {180\textdegree} and reflecting over the horizontal axis gets
\reflectbox{\rotatebox[origin=c]{180}{\(\zeta\)}}, the same as a reflection
across the vertical axis.
\end{document}

graphicx 示例

在实际论文中,您可能希望使用 来声明符号,而\newcommand不是将此代码插入正在运行的文本中。如果它不是“普通”数学符号,您可能还希望将其包装在更改其数学类别的命令中,例如\mathop

附言

你问还有哪些字母可以“通过 amssymb 旋转”,\Omega比如\mho。在 中有许多这样的“旋转”字母Unicode 中的字母符号块,其他数学符号类似于旋转的希腊字母,例如 ∇、∐、∀ 和 ∃。(在传统的 LaTeX 中,没有命令\Alpha\Epsilon,拉丁字母 A 和 E 代替它们。)Barbara Beeton 提出 V 看起来像倒置的 Λ。您可以将其中任何一个与unicode-math,可以直接使用,也可以通过代码点使用,或者用一个象征性的名字通常是向后兼容的。由于您已将此问题标记为 PDFTeX,因此在该引擎中,请在“全面的 LaTeX 符号列表。”

答案2

像这样?

\documentclass{article}
\usepackage{graphics} 

\begin{document}

\[ \Omega\quad\raisebox{\depth}{\scalebox{1}[-1]{$ \Omega $}} \]

\end{document} 

在此处输入图片描述

添加

更简单来说,该amssymb包定义了\mho电导单位的命令:在此处输入图片描述

相关内容