KTUG마당은 KTUG를 방문하는 모든 이용자가 대화를 나누고 소식을 전하는 곳입니다.

  • 로그인 없이 자유롭게 글을 읽고 쓸 수 있는 철학은 처음과 같이 계속됩니다.
  • Team Blog의 글을 이곳 게시판의 "정보글"로 모았습니다. Team blog는 기고자가 올린 글에 질문을 받는 부담을 줄이기 위하여 댓글을 허용하지 않았습니다. 그러나 이곳 게시판으로 모으면서 댓글을 달 수 있습니다. 게시물을 작성하실 때 댓글을 원하지 않으시면 댓글을 허용하시지 않으시기를 바랍니다. 또한 불필요한 소모성 댓글을 달지 않도록 주의하여 주시기를 바랍니다.
  • TeX과 관련된 질문이나 답변은 QnA 마당을 이용하십시오. TeX과 관련된 질문은 지웁니다
  • MathJax를 이용한 수식조판을 사용하실 수 있습니다. 여기를 참조하세요.
  • 스팸 글을 막기 위하여 짧은 시간 내에 다시 글이 등록되는 IP를 막거나, 광고 글을 막기 위하여 금지어로 .com, .net 등을 설정하고 있습니다. 다소간의 불편함이 있으시더라도 양해 바랍니다.
    • 금지어에서 stackexchange, stackoverflow, ctan, overleaf, , github, google.com, gmail.com, .org, .io, sil.org, wiki.com, tistory.com등은 해제하였습니다.
  • 사용하는 편집기는 CKeditor입니다. 편집기에서 [enter]를 누르면 <p> 태그가 들어가고, 문단으로 생각하고 한줄을 비웁니다. 글줄만 바꾸려면 shift-enter 를 누르시면 <BR>가 들어가므로 용도에 맞게 나누어 쓸 수 있습니다.

ischo

tabu로 그리기:

\documentclass{article}

\usepackage{tabu}
\usepackage{multirow}     

%% tabu-fix (by ndh)
\usepackage{etoolbox}
\makeatletter
\patchcmd
\tabu@startpboxmeasure
{\bgroup\begin{varwidth}}%
{\bgroup
  \iftabu@spread\color@begingroup\fi\begin{varwidth}}%
{}{}
\def\@tabarray{\m@th\def\tabu@currentgrouptype{\currentgrouptype}%
               \@ifnextchar[\@array{\@array[c]}}
\patchcmd
\tabu@message@etime
{\the\pdfelapsedtime}%
{\pdfelapsedtime}%
{}{}
\makeatother

\begin{document}

\DeclareExpandableDocumentCommand\xcol{mO{c}m}{\multicolumn{#1}{#2}{#3}}

\begin{tabu}spread0pt{X[$c1]*2{|X[$c2]}|}
\xcol1{~}  & \xcol1{$C$}  &\xcol1{$D$}      \\ \tabucline{2-}
C          & 2,2          & 0,3             \\ \tabucline{2-}
D          & 3,0          & 1,1             \\ \tabucline{2-}
\end{tabu}

\vspace{1cm}

%% \usepackage{multirow}
\DeclareExpandableDocumentCommand\xrow{mm}{\multirow{#1}{*}{#2}}

\begin{tabu}spread0pt{X[c3]X[$c1]*2{|X[$c2]}|}
\xcol2{~}     & \xcol2{Player Two}            \\
\xcol2{~}     & \xcol1{$C$}  &\xcol1{$D$}     \\ \tabucline{3-}
\xrow2{Player One}
       & C    & 2,2          & 0,3            \\ \tabucline{3-}
       & D    & 3,0          & 1,1            \\ \tabucline{3-}
\end{tabu}

\end{document}

장점:
 - spread: 표의 column width가 제일 넓은 column과 같게 고르게 그려짐. (비례적으로 조절할 수도 있음.)
 - 게임 테이블을 가장 손이 덜 가게 그릴 수 있었음.
단점:
 - 2011년 이후, 업데이트 되지 않고 있어서, 웬만하면 쓰지 말라는 이야기가 있음.




XE Login