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 230237
2732 toc 번호 매김 변경 [2] 질문 2022.10.09 172
2731 Sublimetext 3에서의 forward search [2] 초보 2022.10.08 128
2730 장평 조절, 폰트 [2] 987 2022.10.02 362
2729 한글Markdown문서로 pdf 생성할 때 kotex 설정하는 방법(Sphinx, ReadtheDocs 환경) [4] jspaik 2022.10.05 327
2728 LaTeX 2022 설치 ( TeXLive 2022 설치중 한글사용자 이름 문제 ) [2] file 푸르릉 2022.10.05 307
2727 마이너스 부호(-)가 *로 출력이 됩니다. [1] file ㅇㅇ 2022.10.04 141
2726 단어를 불러오는 방법?? [1] 2022.10.03 131
2725 Mac TexShop 한글 깨짐 현상 문의 [1] file Min 2022.10.02 154
2724 문서 아래 넓이를 조절하고 싶습니다 [4] file 2022.09.25 171
2723 TeXworks에서 Latexmk를 사용하는 방법을 알고 싶습니다. [2] J 2022.09.23 176
2722 Unicode character (U+F8F1) not set up for use with LaTeX. \end{align*}  [1] lee 2022.08.24 329
2721 VScode에서 책 컴파일 오류 [1] file nokdu 2022.08.23 225
2720 TeXworks의 초기화 file 작성법에 대한 문의 [2] 이창섭 2022.08.17 225
2719 Texpad Bundle download 문제 [3] Latex_Chobo 2022.03.22 832
2718 표 제작 과정에서 몇 가지 사항을 여쭙니다. [7] file 구름 2022.08.12 1645
2717 \soul package와 \ulem package에 관한 질문입니다. [2] 구름 2022.08.07 975
2716 /bibitem으로 구성된 파일을 \printbibliography와 연계할 수 있을지 궁금합니다. [6] 구름 2022.08.03 1194
2715 KoPubWorldBatang 폰트를 찾지 못한다는 오류 [2] hwlee 2022.08.03 1493
2714 현재 수직 위치 [2] yihoze 2022.07.26 895
2713 Bibliography를 출력하려는데 Biber를 실행하라는 메시지가 나옵니다. [7] file 구름 2022.07.22 1036



XE Login