General ⇒ big cartesian product
big cartesian product
I want to illustrate a big cartesian product of sets. Is there a big version of the \times symbol for which indexes can be used? I don't want to use the \prod symbol, because in my math lectures we always use the cross symbol. Can somebody help me?
Hornisse
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
big cartesian product
welcome to the board!
The ifsym package provides the symbols \Cross, \BigCross and \Smallcross, perhaps they would be useful for you.
Stefan
Re: big cartesian product
Thank you for your quick answer! Obviously I'm not an expert using LaTeX... Can you tell me how to download the ifsym package, respectively where I have to safe it? I tried it in the font folder, but it didn't work. The cross symbols you mentioned seem to be exactly what I need.
Hornisse
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: big cartesian product
which LaTeX distribution do you use? Some distributions like MiKTeX and TeX Live offer a package management tool for the installation, so you don't need to install it manually.
Btw. now I'm away for some time and can give other answers in about 2 hours, but perhaps other users would provide additional help.
Stefan
Re: big cartesian product
I've just found out, that the package ifsym has already been installed. I checked it in the MikTex Package Manager. I also load the package in the pramble by \usepackage {ifsym}. Nevertheless the commands \Cross and \BigCross don't work.
Do you have any idea why?
Hornisse
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
big cartesian product
Code: Select all
\usepackage[geometry]{ifsym}
Re: big cartesian product
At last I've been able to use the ifsym package. Unfortunately, as the symbols are geometric ones, I can't use them as mathematical ones, i.e. I can't add indexes exactly below und over the symbol. Any other ides where to get such a cross symbol? I thought that this should be a standard symbol... Crosses within a circle are actually used to indicate product-sigma-algebras. I definately need one without circle

Hornisse
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
big cartesian product
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 2
- Joined: Sun Oct 30, 2011 6:54 pm
big cartesian product
I don't like using symbols from other packages because they modify the standard AMS symbols.
An alternative is to define the command yourself and then use it as needed.
I use the standard \times command, and simply declare it to be a math-operator so that you can have the proper superscripts and subscripts.
Code: Select all
\DeclareMathOperator*{\cart}{\times}
Example 1: $X = \cart_{i\in I} X_i$\\
Example 2: $X = \displaystyle\cart_{i\in I} X_i$\\
Example 3:
\begin{equation*}
X = \cart_{i\in I} X_i
\end{equation*}