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 |
Tags
- Big-O 예제
- recursive algorithms
- one-to-one
- matrix trnasformations
- Big-Oh 예제
- Big Omega
- homogeneous linear system
- matrix-vector product
- matrix fo a linear transformation
- nonhomogeneous linear system
- 랜덤 순서 배열
- Big Theta
- 코틀린 시작하기
- 이진 탐색
- Big-Oh notation
- 코틀린 Hello World!
- linear dependence
- 빅세타
- 빅오 표기법
- 일차변환
- 빅오메가
- solutions of matrix equation
- 배열 섞기
- NumPy
- python
- nontrivial solution
- 재귀함수
- itertools
- 알고리즘 분석의 실례
- trivial solution
Archives
- Today
- Total
코딩 연습
(LaTeX) 원문자 이상하게 나올 때 본문
반응형
TeX 에서 \textcircled{1} 을 사용하면 다음과 같이 원문자가 이상하게 나온다.
이때는 다음의 방법을 사용하면 된다.
\documentclass{article}
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=1pt] (char) {#1};}}
\begin{document}
\circled{1} \circled{2} \circled{3}
\end{document}
결과는 다음과 같다.
반응형
'LaTeX' 카테고리의 다른 글
(LaTex) cases 에서 가운데 정렬 문제 (0) | 2022.02.05 |
---|---|
(LaTeX) underbrace & overbrace (0) | 2022.01.28 |
(LaTeX) enumerate 에서 들여쓰기 (0) | 2022.01.21 |
(emacs) AUCTeX cannot find a working TeX distribution (0) | 2022.01.16 |
(LaTeX) 문서의 일부분만 줄간격을 변경하고 싶을 때 (0) | 2021.07.19 |
Comments