Q&A 마당은 텍 관련 질문/답변을 위해 만들었습니다.
- 로그인 없이 자유롭게 글을 읽고 쓸 수 있는 철학은 처음과 같이 계속됩니다.
- 질문 전에 아래를 읽어 보세요. 좋은 질문이 좋은 답을 받을 수 있는 좋은 방법입니다.
- 질문에 맞는 제목을 붙이세요. 질문의 내용과 관련없는 "고수님", "긴급질문", "도와주세요"와 같은 제목은 답이 잘 올라오지 않습니다. 이 게시판에 올라오는 모든 글은 질문입니다. 굳이 [질문], [Q]를 적으실 필요도 없습니다.
- 내용을 충실히 적어 주시고, 같은 상황을 재현할 수 있는 최소한의 예제가 같이 있어야 합니다.
- 최소 예제는 "Minimal working example"을 읽어 보세요.
- 파일을 첨부하실 때에는 가능한 압축하여 파일 크기를 줄여서 올려주시길 바랍니다.
- 개인적으로 사용하신 글꼴이 들어 있는 경우, preparefont.sty에 관한 답변을 참조하세요.
- 스팸 글을 막기 위하여 짧은 시간 내에 다시 글이 등록되는 IP를 막거나, 광고 글을 막기 위하여 금지어로 .com, .net 등을 설정하고 있습니다. 다소간의 불편함이 있으시더라도 양해 바랍니다.
- 금지어에서 stackexchange, stackoverflow, ctan, overleaf, , github, google.com, gmail.com, .org, .io, sil.org, wiki.com, tistory.com등은 해제하였습니다.
- MathJax를 이용한 수식조판을 사용하실 수 있습니다. 여기를 참조하세요.
- 사용하는 편집기는 CKeditor입니다.
- 편집기에서 [enter]를 누르면 <p> 태그가 들어가고, 문단으로 생각하고 한 줄을 비웁니다.
- 글줄만 바꾸려면 [shift-enter]를 누르면 <BR> 태그가 들어가므로 용도에 맞게 나누어 쓸 수 있습니다.
- 수식를 문서내에 삽입하시려면 에디터를 툴바에서 [소스]를 눌러 HTML로 입력할 수 있게 바꾸신 후 <pre> </pre> tag를 사용하셔서 <pre> 여러 줄의 수식 </pre>처럼 입력하시면 좋습니다.
동그라미 로마숫자
2013.08.11 17:47
로마 숫자 ⅰ, ⅱ, ⅲ, ⅳ, ....를 ①, ②, ③, ....과 같이 동그라미 안에 넣어서 표시하고 싶은데, 가능한 방법이 있는지 모르겠습니다.
도움말씀 주시면 감사하겠습니다.
댓글 5
-
yihoze
2013.08.12 09:20
\documentclass{article}\usepackage{enumitem}\usepackage{xcolor}\usepackage{relsize}\usepackage{tikz}\def\circnumfont{\smaller\bfseries}\def\circnumbase{99}\newlength\circnumwidth\settowidth\circnumwidth{\circnumfont\circnumbase}\newlength\circraise\setlength\circraise{-.5ex}\newlength\circsep\setlength\circsep{2pt}\def\circbgcolor{white}\def\circfgcolor{black}\makeatletter\newcommand*\circnum[1]{%\raisebox{\circraise}{%\tikz\node[%circle,draw=\circbgcolor,thin,inner sep=.25\circsep,%top color=\circbgcolor,bottom color=\circbgcolor,%text width=\circnumwidth,%font=\circnumfont,text badly centered,\circfgcolor%]{#1};}}\makeatother\begin{document}\begin{enumerate}[label=\protect\circnum{\roman*}]\item There's a lady who's sure\item all that glitters is gold\item when she's buying a stairway to heaven.\item When she gets there\item she knows\item If the stores are all closed\item with a word she can get what she came for.\end{enumerate}\def\circbgcolor{black}\def\circfgcolor{white}\begin{enumerate}[label=\protect\circnum{\arabic*}]\item There's a lady who's sure\item all that glitters is gold\item when she's buying a stairway to heaven.\item When she gets there\item she knows\item If the stores are all closed\item with a word she can get what she came for.\end{enumerate}\end{document} -
초보자
2013.08.12 10:35
대단히 감사합니다. 멋지네요.
그런데, item 환경 말고 문서 중간에서 쓰려고 하는데, 어떻게 해야 할지를 모르겠습니다. \circnum{\roman{3}} 와 같이 쓸 수 있지 않을까 했는데, 안되네요.
어떻게 할 수 있을는지요?
-
나도초보
2013.08.12 10:59
로마자는 잘 모르겠고 숫자는 아래 문서 77페이지와 94페이지를 참고하세요.
http://www.tex.ac.uk/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
-
yihoze
2013.08.12 11:53
\circnum{i} ... \circnum{iv} ... \circnum{x}
카운터를 이용하시려면
\newcounter{mycnt}
\setcounter{mycnt}{1}
\renewcommand\themycnt{\roman{mycnt}}
\circnum{\themycnt}
\stepcounter{mycnt}
\circnum{\themycnt}
-
초보자
2013.08.12 13:55
대단히 감사합니다. 덕분에 해결되었습니다.
좋은 하루 되십시오.