Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Big-Oh 예제
- 재귀함수
- 빅세타
- linear dependence
- 랜덤 순서 배열
- nonhomogeneous linear system
- solutions of matrix equation
- python
- 배열 섞기
- matrix fo a linear transformation
- nontrivial solution
- 일차변환
- 코틀린 시작하기
- 빅오메가
- Big-Oh notation
- itertools
- 코틀린 Hello World!
- NumPy
- 이진 탐색
- recursive algorithms
- 빅오 표기법
- Big Theta
- 알고리즘 분석의 실례
- matrix-vector product
- trivial solution
- one-to-one
- homogeneous linear system
- Big Omega
- matrix trnasformations
- Big-O 예제
Archives
- Today
- Total
코딩 연습
부채꼴 "호" 를 나타내는 arc 를 제대로 표현하기 본문
반응형
\documentclass{article}
\usepackage{graphicx}
\makeatletter
\DeclareFontFamily{U}{tipa}{}
\DeclareFontShape{U}{tipa}{m}{n}{<->tipa10}{}
\newcommand{\arc@char}{{\usefont{U}{tipa}{m}{n}\symbol{62}}}%
\newcommand{\arc}[1]{\mathpalette\arc@arc{#1}}
\newcommand{\arc@arc}[2]{%
\sbox0{$\m@th#1#2$}%
\vbox{
\hbox{\resizebox{\wd0}{\height}{\arc@char}}
\nointerlineskip
\box0
}%
}
\makeatother
\begin{document}
$\arc{AC}$ $\arc{BAD}$ $\arc{ICK}$ $\arc{GOOD}_{\arc{xyz}}$
\end{document}
반응형
'LaTeX' 카테고리의 다른 글
취소선 (cancel) (0) | 2024.11.19 |
---|---|
enumerate 의 시작 번호를 변경하는 방법 (0) | 2024.11.16 |
(LaTeX) 미주(endnote) 넣는 방법 (0) | 2023.03.10 |
(LaTex) 문서 전체적으로 자동 indentation 을 없애는 방법 (0) | 2023.02.08 |
(LaTex) 페이지 끝까지 다단 구분선 넣기 (0) | 2023.02.08 |
Comments