MiKTeX and proTeXtHelp finding a symbol

Information and discussion about MikTeX distribution for Windows and the related proTeXt: Installing, updating, configuring
Post Reply
tempneff
Posts: 3
Joined: Tue Nov 02, 2010 6:28 am

Help finding a symbol

Post by tempneff »

Hello all,

I am new here and to LaTeX. I am in need of a package that contains a cube (3D). I found one listed in the manfnt.sty (/mancube), but when I use this package and command I receive a different symbol. I tested some others from this package and all were inconsistent with what they are listed as.

Can anyone recommend a package with this symbol?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Help finding a symbol

Post by frabjous »

\mancube from manfmt looks like a cube to me. What other symbol do you get?

If you can't find one in any package, it should be fairly easy to draw one using one of the graphics packages. Here's a quick one in pgf/TikZ, you could scale to any size you wanted:

Code: Select all

\documentclass{report}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[very thick]
    \draw  (0,0) rectangle (2,2);
    \draw  (1,1) rectangle (3,3);
    \draw  (0,0) -- (1,1);
    \draw  (0,2) -- (1,3);
    \draw  (2,2) -- (3,3);
    \draw  (2,0) -- (3,1);
 \end{tikzpicture}
\end{document}
Of course, you might prefer an opaque cube, etc.
tempneff
Posts: 3
Joined: Tue Nov 02, 2010 6:28 am

Help finding a symbol

Post by tempneff »

I am getting the a zero with a slash (zero set symbol, i think) You mentioned "manfmt"
\mancube from manfmt looks like a cube to me. What other symbol do you get?
Is that a typo? I am using "manfnt" otherwise
! LaTeX Error: File `manfmt.sty' not found.
As far as drawing one, that sounds great. I need it very small, 12 pt, at the end of a sentence as a QED symbol. Any other tips?

and thanks!
tempneff
Posts: 3
Joined: Tue Nov 02, 2010 6:28 am

Re: Help finding a symbol

Post by tempneff »

WOW!! awesome! I was able to use that script, adjust the size and do just what I wanted. Thanks again!!!
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Help finding a symbol

Post by frabjous »

manfmt was a typo.

Glad the other thing helped.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Help finding a symbol

Post by localghost »

Now that the problem is solved, please be so kind and mark the topic (not the last post) accordingly as clearly written in Section 3 of the Board Rules (to be read before posting). Please keep that in mind for the future so that further reminders will not be necessary.


Best regards and welcome to the board
Thorsten
Post Reply