4

So I want an apostrophe to denote the complement, but the ^\prime symbol looks a bit too angled.

I found somewhat of a solution here.

But I can't get it to work with subscripts, A_0^\prime yields:

enter image description here

But I want the prime sign rotated 12 degrees to the left. Is that possible?

John
  • 41

2 Answers2

3

With a slightly modified definition from the answer to "Create rotated prime symbol" (removing the trailing \;) it works.

enter image description here

\documentclass{article}
\usepackage[figuresright]{rotating}

\newcommand*{\p}{% {\mathchoice% {\turnbox{12}{$\displaystyle,'$}}% {\turnbox{12}{$\textstyle,'$}}% {\turnbox{12}{$\scriptstyle,'$}}% {\turnbox{12}{$\scriptscriptstyle,'$}}}% }%

\begin{document} $A\p_0$ \end{document}

gernot
  • 49,614
2
\documentclass{book}
\usepackage{amsmath}
\begin{document}
    \begin{align}
              A_{0}^{\prime}
    \end{align} 
\end{document}

enter image description here

\documentclass{article}
\usepackage{rotating}

\newcommand{\pp}{\rotatebox{20}{\prime}}

\begin{document} $A^{\pp}$ \end{document}

  • 2
    It seems the OP aims at a prime symbol that is rotated to the left. $A'$ is basically the same as $A^\prime$ – gernot Jan 23 '21 at 18:46