Discussion:
vertical ' = ' symbol
(too old to reply)
pkg
2006-05-27 08:14:40 UTC
Permalink
Dear all,

is there in LaTeX a ' = ' symbol (equal symbol) which is rotated by
90° ... I need it to create a commutative diagram like picture in
pstricks ... maybe there is a suitbale rotation command which I can
apply to the original = symbol?
By the way: \| is no alternative, because I want the symbol to have
exactly the same length as = and I do not want the amscd package (which
provides some vertical double lines) either!
Many thanks
pkg
Per H P
2006-05-27 09:34:15 UTC
Permalink
Post by pkg
Dear all,
is there in LaTeX a ' = ' symbol (equal symbol) which is rotated by
90° ... I need it to create a commutative diagram like picture in
pstricks ... maybe there is a suitbale rotation command which I can
apply to the original = symbol?
By the way: \| is no alternative, because I want the symbol to have
exactly the same length as = and I do not want the amscd package (which
provides some vertical double lines) either!
Many thanks
pkg
\newcommand{\verteq}[0]{\begin{turn}{90} $=$\end{turn}}

If you place this in the top of your document or in your preamble
you should be able to write \verteq and get your vertical equal sign.
There are probably other and better ways to do this - but I think it
will work.

YUP :) I just tested it, and it works perfectly (Just remember that the
command "turn" does not work correctly in WhizzyTeX - which is my best
LaTeX tool)

Best regards Per
pkg
2006-05-27 09:45:07 UTC
Permalink
Dear Per
the environment turn is unknown to my MiKTeX ... which package is
require to make it known?
BR
pkg
Robin Fairbairns
2006-05-27 10:01:16 UTC
Permalink
Post by pkg
the environment turn is unknown to my MiKTeX ... which package is
require to make it known?
it's part of the rotating package.

however, the graphics/x package(s) provide a rotatebox command which
would do just as well (and require one package fewer):

\usepackage{graphicx}
...
\rotatebox{90}{$=$}

however, given that you're using pstricks, there's (almost certainly)
a rotation command that would swim well with what you have already, as
part of some pstricks package.
--
Robin Fairbairns, Cambridge
Herbert Voss
2006-05-27 10:22:23 UTC
Permalink
Post by Robin Fairbairns
however, given that you're using pstricks, there's (almost certainly)
a rotation command that would swim well with what you have already, as
part of some pstricks package.
\rotateleft{=}

Herbert
--
http://PSTricks.de/
http://TeXnik.de/
http://www.dante.de/CTAN/info/math/voss/mathmode/Mathmode.pdf
http://www.dante.de/faq/de-tex-faq/
http://www.tex.ac.uk/cgi-bin/texfaq2html?introduction=yes
pkg
2006-05-27 10:03:08 UTC
Permalink
OK ... I have found another solution quite similar to yours:

\usepackage{rotating}

\begin{rotate}{90}=\end{rotate}

BR
pkg
pkg
2006-05-27 10:06:06 UTC
Permalink
@Robin Fairbairns: didn't see your post appearing while writing my post
... os it's no longer
"another" solution ...
BR
pkg
Per H P
2006-05-27 12:08:55 UTC
Permalink
Post by pkg
\usepackage{rotating}
I see you found the package :)...
Post by pkg
\begin{rotate}{90}=\end{rotate}
the rest was just a newcommand, so you do not need to write too much
every time you need your vertical =

/Per
Post by pkg
BR
pkg
Donald Arseneau
2006-05-27 10:08:16 UTC
Permalink
Post by Per H P
\newcommand{\verteq}[0]{\begin{turn}{90} $=$\end{turn}}
Better than {turn} is to use the standard graphics command
\rotatebox (package graphics or graphicx).

However, you should beware that rotation is not really
supported by TeX, and relies on downstream output drivers.

I don't know if some math symbols package has a pre-rotated
equals sign.
--
Donald Arseneau ***@triumf.ca
J.S.Milne
2006-05-27 13:15:32 UTC
Permalink
Post by Donald Arseneau
I don't know if some math symbols package has a pre-rotated
equals sign.
There is $\parallel$, which looks a bit long, and amssymb has
$\shortparallel$, which looks a bit short.
Dan Luecking
2006-05-27 23:36:37 UTC
Permalink
Post by J.S.Milne
Post by Donald Arseneau
I don't know if some math symbols package has a pre-rotated
equals sign.
There is $\parallel$, which looks a bit long, and amssymb has
$\shortparallel$, which looks a bit short.
This has the advantage of being adjustable:
\rule[.4ex]{.4pt}{1.6ex}\hspace{2pt}\rule[.4ex]{.4pt}{1.6ex}


Dan
To reply by email, change LookInSig to luecking

*** Posted via a free Usenet account from http://www.teranews.com ***
Loading...