Math & Science ⇒ wasysym | "because" Equivalent to '\wasytherefore'
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
wasysym | "because" Equivalent to '\wasytherefore'
How can I get the "because" or "since" symbol opposite to \wasytherefore (meaning upside down three dots) to be used in equations. Also, if I can set another \because symbol to be used with the same formatting as wasysym then that would work out so good for my document. Thanks.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
wasysym | "because" Equivalent to '\wasytherefore'
Did you take a look at »The Comprehensive LaTeX Symbol List«? Perhaps Detexify can also be helpful. As a random shot I would guess that the amssymb package offers both symbols. Then wasysym would be superfluous.
Thorsten
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
wasysym | "because" Equivalent to '\wasytherefore'
Code: Select all
\documentclass[fleqn]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{wasysym}
\setlength{\parindent}{0in}
\begin{document}
$\because$ Hello world How are you? \\ \\
$\wasytherefore$ Hello world How are you?
\end{document}
If there is a way to align this symbol (\because) like \wasytherefore with the baseline of the text that's what I'm looking for.
- Attachments
-
- test.png (17.81 KiB) Viewed 28593 times
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
wasysym | "because" Equivalent to '\wasytherefore'
Good grief! Then go search for other solutions which are not far to seek.
- Take both symbols from »amssymb«. They are aligned equally bad.
- Search for alternative symbols and their packages in the already mentioned document.
- Use \raisebox for the bad aligned symbol.
- Complain to the package author.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: wasysym | "because" Equivalent to '\wasytherefore'
I just thought of an alternate solution, why not just flip \wasytherefore to become a fake \because symbol ?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: wasysym | "because" Equivalent to '\wasytherefore'
There we go! Looking forward to your ideas.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: wasysym | "because" Equivalent to '\wasytherefore'
except I don't know how to do that 

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
wasysym | "because" Equivalent to '\wasytherefore'
Your idea is not bad, but to me seems too roundabout. I already referred you to the \raisebox command. And now you only need to go one step further. Together with the symbols of »amssymb« you can get what you want.
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{amssymb}
\setlength{\parindent}{0in}
\begin{document}
\raisebox{0.75pt}{$\because$} Hello world How are you?
\raisebox{0.75pt}{$\therefore$} Hello world How are you?
\end{document}
- Attachments
-
- The result of the given example.
- raised-symbols.png (11.67 KiB) Viewed 28581 times
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10