Math & Science1 inside a circle

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
Lumy
Posts: 24
Joined: Tue Jan 06, 2009 2:41 pm

1 inside a circle

Post by Lumy »

Hello,

how write in Latex

1 inside a circle in math mode?

Ex: $\int_{1 inside a circle}$.


Thank you.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

1 inside a circle

Post by gmedina »

Hi,

in the following example I defined the \circone command:

Code: Select all

\documentclass{article}

\newcommand{\circone}{\mbox{\textcircled{\tiny 1}}}%

\begin{document}

\[ \int\limits_{\circone} \]

\end{document}
Of course, modify my example according to your needs.
Last edited by gmedina on Mon Jul 27, 2009 3:33 pm, edited 1 time in total.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

1 inside a circle

Post by localghost »

Take a look at the pifont package from the PSFNSS bundle. It provides commands for using the Zapf Dingbats font.


Best regards
Thorsten
phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

1 inside a circle

Post by phi »

Hello,

Code: Select all

\documentclass{article}

\usepackage{pifont}
\usepackage{amsmath}

\begin{document}

$\int_{\text{\ding{172}}}$

\end{document}
Post Reply