다양한 크기의 점을 어떻게 입력하나요?

다양한 크기의 점을 어떻게 입력하나요?

아래 텍스트와 같이 매우 큰 점을 입력해야 합니다. 채워진 버전과 빈 내부 버전 모두에 대해 어떻게 해야 합니까?

여기에 이미지 설명을 입력하세요

답변1

\circ표준 수학 모드에서는 작은 흰색 점과 \bullet작은 검은색 점에 사용할 수 있습니다 . package 를 사용하면 큰 항목에 대한 및 명령을 wasysym사용할 수 있습니다 .CircleCIRCLE 참고하세요해독하다기호를 찾는 훌륭한 도구입니다. 다음과 같은 LaTeX 기호 목록도 많이 있습니다.이 하나.

답변2

내 예는 다음과 같습니다.

\documentclass[12pt]{report}
\usepackage{tikz}
\begin{document}
$\circ $
$\bullet$
$\bigcirc$
Some Text \tikz\draw[black,fill=black] (0,0) circle (1ex); more text
\end{document}

이는 다음을 제공합니다:여기에 이미지 설명을 입력하세요

또한 확인하십시오:단색 원을 그리는 방법은 무엇입니까?ams-math 문서의 경우:http://ftp.acc.umu.se/mirror/CTAN/info/short-math-guide/short-math-guide.pdf.

답변3

mathabx패키지를 로드하지 않고도 일부 글리프를 사용할 수 있습니다 .

\documentclass{article}
\usepackage{geometry} 

\DeclareFontFamily{U}{mathb}{\hyphenchar\font45}
\DeclareFontShape{U}{mathb}{m}{n}{ <-6> mathb5 <6-7> mathb6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
\DeclareSymbolFont{mathb}{U}{mathb}{m}{n}
 %
\DeclareFontFamily{U}{mathx}{\hyphenchar\font45}
\DeclareFontShape{U}{mathx}{m}{n}{ <-6> mathx5 <6-7> mathx6 <7-8>
mathx7 <8-9> mathx8 <9-10> mathx9 <10-12> mathx10 <12-> mathx12 }{}
\DeclareSymbolFont{mathx}{U}{mathx}{m}{n}

\DeclareMathSymbol{\newmoon} {\mathord}{mathb}{"4D}%swapped in the original file
\DeclareMathSymbol{\fullmoon} {\mathord}{mathb}{"4E}%swapped in the original file
\DeclareMathSymbol{\bigovoid} {\mathop}{mathx}{"EC}

\newcommand{\Circ}{$\vcenter{\hbox{$\newmoon\;$}}$}
\newcommand{\CIRC}{${\bigovoid}\;$}
\newcommand{\thickdot}{$\vcenter{\hbox{$\fullmoon\;$}}$}
\newcommand{\DOT}{$\vcenter{\hbox{\Large$\fullmoon\:$}}$}

\begin{document}

\fbox{\parbox{0.9\linewidth}{Here the vertices are indicated according to their heights, where \DOT denotes a vertex of height $3$, \thickdot denotes height $2$, \Circ denotes height $1$ and \CIRC denotes height $0$. }}

\end{document} 

여기에 이미지 설명을 입력하세요

관련 정보