Math & Sciencemedium size $\cup$

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
drowsy
Posts: 44
Joined: Tue Dec 23, 2008 6:00 am

medium size $\cup$

Post by drowsy »

Is there a medium size $\cup$ symbol? Sort of in the middle between $\cup$ and $\bigcup$?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

medium size $\cup$

Post by gmedina »

Hi,

one option could be to load the relsize and exscale packages and to use \mathsmaller{\bigcup}; take a look at the following example that gives four sizes for the union symbol:

Code: Select all

\documentclass{article}
\usepackage{relsize}
\usepackage{exscale}

\begin{document}

$\cup\mathsmaller{\bigcup}\bigcup\mathlarger{\bigcup}$

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
drowsy
Posts: 44
Joined: Tue Dec 23, 2008 6:00 am

Re: medium size $\cup$

Post by drowsy »

Nice, thank you!
Post Reply