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>처럼 입력하시면 좋습니다.

listing 패키지의 한글 주석 색넣기

2017.02.15 11:44

김소원 조회 수:7224

안녕하세요.

TeX의 listing 패키지를 사용하던 중.. 

한글 코맨트가 색이 칠해지지 않아 어찌해결 할까 고민중 도움을 받고자 글을 올리게 되었습니다.

\documentclass[a4paper,footnote]{oblivoir}

 

\pagestyle{hangul}

 

%\usepackage[default]{memucs-interword-x}

%\interhword{.4}{.1}{.1}

 

\usepackage[utf8]{inputenc}

 

\usepackage{listings}

\usepackage{caption}

\usepackage{geometry}

\usepackage{color}

 

\usepackage{fontspec}

\usepackage{vhistory}

 

\newfontfamily{\ttconsolas}{Consolas}

 

\setmainfont[Mapping=tex-text]{TeX Gyre Termes}

\setsansfont[Mapping=tex-text]{TeX Gyre Heros}

\setkormainfont(NanumBarunGothicBold){NanumBarunGothic}

\setkorsansfont(NanumGothicExtraBold)(NanumGothicBold){NanumGothic}

 

\definecolor{codekeyword}{rgb}{0.34,0.61,0.84}

\definecolor{codecomment}{rgb}{0.34,0.65,0.29}

\definecolor{codegray}{rgb}{0.5,0.5,0.5}

\definecolor{codepurple}{rgb}{0.58,0,0.82}

\definecolor{backcolour}{rgb}{0.95,0.95,0.92}

 

\lstset{

commentstyle=\color{codecomment}\textit,

keywordstyle=\color{codekeyword}\textbf,

numberstyle=\small\color{codegray},

stringstyle=\color{codepurple},

frame=top,frame=bottom,

basicstyle=\small\normalfont\ttconsolas,

stepnumber=1,

numbers=left,

numbersep=10pt,

tabsize=2,

extendedchars=true,

breaklines=true,

captionpos=t,

mathescape=true,

stringstyle=\color{white}\ttfamily,

showspaces=false,

showtabs=false,

xleftmargin=17pt,

framexleftmargin=17pt,

framexrightmargin=17pt,

framexbottommargin=5pt,

framextopmargin=5pt,

showstringspaces=false

}

\DeclareCaptionFormat{listing}{\rule{\dimexpr\textwidth+17pt\relax}{0.4pt}\par\vskip1pt#1#2#3}

\captionsetup[lstlisting]{format=listing,singlelinecheck=false, margin=0pt, font={sf},labelsep=space,labelfont=bf}

 

\renewcommand\lstlistingname{Example}

\begin{document}

\begin{lstlisting}[language=C++,caption={테스트입니다. 하이하이},escapeinside=`']

#include <tuple>

#include <iostream>

#include <array>

#include <utility>

 

// Convert array into a tuple

template<typename Array, std::size_t... I>

decltype(auto) a2t_impl(const Array& a, std::index_sequence<I...>)

{

return std::make_tuple(a[I]...);

}

 

template<typename T, std::size_t N, typename Indices = std::make_index_sequence<N>>

decltype(auto) a2t(const std::array<T, N>& a)

{

return a2t_impl(a, Indices());

}

 

// pretty-print a tuple

// comment `한글 주석 스페이스도 안되나?' dmdm 

 

template<class Ch, class Tr, class Tuple, std::size_t... Is>

void print_tuple_impl(std::basic_ostream<Ch,Tr>& os,

const Tuple & t,

std::index_sequence<Is...>)

{

using swallow = int[]; // guarantees left to right order

(void)swallow{0, (void(os << (Is == 0? "" : ", ") << std::get<Is>(t)), 0)...};

}

 

template<class Ch, class Tr, class... Args>

decltype(auto) operator<<(std::basic_ostream<Ch, Tr>& os,

const std::tuple<Args...>& t)

{

os << "(";

print_tuple_impl(os, t, std::index_sequence_for<Args...>{});

return os << ")";

}

 

int main()

{

std::array<int, 4> array = {1,2,3,4};

 

// convert an array into a tuple

auto tuple = a2t(array);

static_assert(std::is_same<decltype(tuple),

std::tuple<int, int, int, int>>::value, "");

 

// print it to cout

std::cout << tuple << '\n';

}

\end{lstlisting}

 

\end{document}

 

로 작성하였습니다..

 

도움을 주시면 감사하겠습니다.

 

번호 제목 글쓴이 날짜 조회 수
공지 Minimal Working Example을 첨부해주세요 [4] nanim 2015.06.23 230230
2772 각주의 표지 모양 바꾸기 [3] file 판돌이 2023.01.26 116
2771 toc의 위쪽에 있는 여백 [2] file 판돌이 2023.01.23 88
2770 section과 title에서 한글 산세리프체를 볼드체로 쓰기 [2] 고양이 2023.01.16 217
2769 toc와 본문 사이의 빈 페이지 [4] file 판돌이 2023.01.17 152
2768 tikz 그림에서 레이블을 특정부분부터 나오게 하고 싶습니다. [2] file 고양이 2023.01.18 97
2767 magin을 침범한 figure [3] file 판돌이 2023.01.16 109
2766 tikz에서 def명령어 사용시 에러가 납니다. [2] 고양이 2023.01.13 392
2765 MikTex 첫 이용 중 문의. [2] file 처음해봅니다 2023.01.12 121
2764 줄바꿈 되는 verb [2] yihoze 2023.01.06 141
2763 Amazon EC2 호스팅에서 yum으로 TeXLive 2013 설치 후 kotex.sty not found [4] asdhi 2023.01.08 211
2762 \therefore는 아닌 ⁂ 찍기 [2] 판돌이 2023.01.07 117
2761 NotesTeX 에서 한글 식자하려면? [2] file 천국왕자 2023.01.05 127
2760 문제 번호를 아래로 내리고 그 자리에 다른 내용을 넣을려고 하는데 어떻게 해야하나요 [1] file PS 2023.01.04 134
2759 줄넘김 없이 여백에 찍히도록 [2] file 판돌이 2023.01.04 124
2758 babel, csquotes, 그리고 kotex이 만났을 때 [4] yihoze 2023.01.03 114
2757 MikTeX에서 graphicx 패키지 에러 [1] hyunsan 2023.01.03 80
2756 XeTeX-ko 및 LuaTeX-ko에서 역물음표(¿) 및 역느낌표(¡) 출력 문제 [2] 애플민트초콜릿 2022.12.30 194
2755 산돌폰트의 설치 관련 [8] file 판돌이 2022.11.24 745
2754 oblivoir에서 enumerate 사용시 item의 괄호 기울어짐.. [3] file texchobo 2022.12.26 145
2753 TeXStudio가 영어로 설정이 안됩니다. [2] rule 2022.12.26 111



XE Login