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-O 예제
- trivial solution
- Big-Oh 예제
- one-to-one
- python
- homogeneous linear system
- 알고리즘 분석의 실례
- 빅오메가
- 일차변환
- matrix fo a linear transformation
- matrix-vector product
- 코틀린 Hello World!
- 재귀함수
- 배열 섞기
- linear dependence
- solutions of matrix equation
- 랜덤 순서 배열
- 빅세타
- itertools
- 코틀린 시작하기
- recursive algorithms
- 이진 탐색
- Big-Oh notation
- matrix trnasformations
- Big Theta
- nontrivial solution
- 빅오 표기법
- NumPy
- nonhomogeneous linear system
- Big Omega
Archives
- Today
- Total
코딩 연습
LaTeX 에서 오지선다형 보기 만들기 본문
반응형
tasks 라는 패키지가 필요하다.
\documentclass{article}
\usepackage{tasks}
\usepackage{kotex}
\begin{document}
\noindent 다음 중 동물의 새끼가 아닌 것은?
\begin{tasks}[label=\textcircled{\scriptsize\arabic*}](3)
\task 강아지
\task 송아지
\task 망아지
\task 병아리
\task 아지랑이
\end{tasks}
\bigskip
\noindent 다음 중 동물의 새끼가 아닌 것은?
\begin{tasks}[label=\textcircled{\scriptsize\arabic*}](2)
\task 강아지
\task 송아지
\task 망아지
\task 병아리
\task 아지랑이
\end{tasks}
\bigskip
\noindent 다음 중 동물의 새끼가 아닌 것은?
\begin{tasks}[label=\textcircled{\scriptsize\arabic*}](1)
\task 강아지
\task 송아지
\task 망아지
\task 병아리
\task 아지랑이
\end{tasks}
\end{document}
결과는 다음과 같다.
만약 보기의 번호를 원문자가 아닌 괄호문자로 바꾸고 싶다면 다음과 같이 하면 된다.
\noindent 다음 중 동물의 새끼가 아닌 것은?
\begin{tasks}[label=(\arabic*)](3)
\task 강아지
\task 송아지
\task 망아지
\task 병아리
\task 아지랑이
\end{tasks}
반응형
'LaTeX' 카테고리의 다른 글
LaTeX 표 생성기 (table generator) (0) | 2021.07.13 |
---|---|
LaTeX 에서 나눗셈과 조립제법 표현하기 (0) | 2021.07.13 |
LaTeX 수식 왼쪽 정렬하기 (0) | 2021.07.07 |
LaTeX 에서 수학문제 보기 상자 만들기 (1) | 2021.07.06 |
LaTeX 의 enumerate 에서 한글 카운터 붙이기 (0) | 2021.07.06 |
Comments