How to use lstlisting with tcolorbox?
I want to insert lstlisting inside a tcolorbox which must has a title and title can be hidden whenever I need, also it's top right and bottom left corner will be rounded something like this:
I know how to use tcolorbox and lstlisting but I don't know how to use them together. Could anyone please help me? Any alternate solution without tcolorbox will be also appreciated.
My code snippet :
documentclass[10pt,a4paper,oneside]{book}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
usepackage{graphicx}
usepackage[left=2.00cm, right=2.00cm, top=2.00cm, bottom=2.00cm, showframe]{geometry}
author{Ravi}
title{How to wite code in LaTeX}
%%%%%%%%%%%%%%% CODE STYLE %%%%%%%%%%%%%%%
usepackage{blindtext}
usepackage{xcolor}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
renewcommand{rmdefault}{phv}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
usepackage{listings}
usepackage[T1]{fontenc}
usepackage{inconsolata}
lstset {
language=Java,%
basicstyle=fontfamily{AnonymousPro}selectfont,%
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},%
commentstyle=bfseriesitshapecolor{black!60},%
showspaces=false,
showtabs=false,
breaklines=true,%
showstringspaces=false,
%breakatwhitespace=true,
%numbers=left,%
%numbersep=8pt,%
%numberstyle=tiny,%
rulecolor=color{white!60!black},%
breaklines=true,%
frame=single,%single
%keepspaces=true,%
xleftmargin=1.5mm,%parindent
xrightmargin=1.5mm,%
framerule=1.2pt,%
backgroundcolor=color{gray!8},%
%morecomment=[s][bfseriescolor{orange!40!red}]{@}{Override},
tabsize=1,
}
lstset{emph={%
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape, %
},emphstyle={bfseriescolor{pblue}}%
}
begin{document}
%maketitle
chapter{Hello LaTeX}
begin{lstlisting}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{lstlisting}
end{document}
listings tcolorbox
add a comment |
I want to insert lstlisting inside a tcolorbox which must has a title and title can be hidden whenever I need, also it's top right and bottom left corner will be rounded something like this:
I know how to use tcolorbox and lstlisting but I don't know how to use them together. Could anyone please help me? Any alternate solution without tcolorbox will be also appreciated.
My code snippet :
documentclass[10pt,a4paper,oneside]{book}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
usepackage{graphicx}
usepackage[left=2.00cm, right=2.00cm, top=2.00cm, bottom=2.00cm, showframe]{geometry}
author{Ravi}
title{How to wite code in LaTeX}
%%%%%%%%%%%%%%% CODE STYLE %%%%%%%%%%%%%%%
usepackage{blindtext}
usepackage{xcolor}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
renewcommand{rmdefault}{phv}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
usepackage{listings}
usepackage[T1]{fontenc}
usepackage{inconsolata}
lstset {
language=Java,%
basicstyle=fontfamily{AnonymousPro}selectfont,%
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},%
commentstyle=bfseriesitshapecolor{black!60},%
showspaces=false,
showtabs=false,
breaklines=true,%
showstringspaces=false,
%breakatwhitespace=true,
%numbers=left,%
%numbersep=8pt,%
%numberstyle=tiny,%
rulecolor=color{white!60!black},%
breaklines=true,%
frame=single,%single
%keepspaces=true,%
xleftmargin=1.5mm,%parindent
xrightmargin=1.5mm,%
framerule=1.2pt,%
backgroundcolor=color{gray!8},%
%morecomment=[s][bfseriescolor{orange!40!red}]{@}{Override},
tabsize=1,
}
lstset{emph={%
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape, %
},emphstyle={bfseriescolor{pblue}}%
}
begin{document}
%maketitle
chapter{Hello LaTeX}
begin{lstlisting}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{lstlisting}
end{document}
listings tcolorbox
add a comment |
I want to insert lstlisting inside a tcolorbox which must has a title and title can be hidden whenever I need, also it's top right and bottom left corner will be rounded something like this:
I know how to use tcolorbox and lstlisting but I don't know how to use them together. Could anyone please help me? Any alternate solution without tcolorbox will be also appreciated.
My code snippet :
documentclass[10pt,a4paper,oneside]{book}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
usepackage{graphicx}
usepackage[left=2.00cm, right=2.00cm, top=2.00cm, bottom=2.00cm, showframe]{geometry}
author{Ravi}
title{How to wite code in LaTeX}
%%%%%%%%%%%%%%% CODE STYLE %%%%%%%%%%%%%%%
usepackage{blindtext}
usepackage{xcolor}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
renewcommand{rmdefault}{phv}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
usepackage{listings}
usepackage[T1]{fontenc}
usepackage{inconsolata}
lstset {
language=Java,%
basicstyle=fontfamily{AnonymousPro}selectfont,%
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},%
commentstyle=bfseriesitshapecolor{black!60},%
showspaces=false,
showtabs=false,
breaklines=true,%
showstringspaces=false,
%breakatwhitespace=true,
%numbers=left,%
%numbersep=8pt,%
%numberstyle=tiny,%
rulecolor=color{white!60!black},%
breaklines=true,%
frame=single,%single
%keepspaces=true,%
xleftmargin=1.5mm,%parindent
xrightmargin=1.5mm,%
framerule=1.2pt,%
backgroundcolor=color{gray!8},%
%morecomment=[s][bfseriescolor{orange!40!red}]{@}{Override},
tabsize=1,
}
lstset{emph={%
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape, %
},emphstyle={bfseriescolor{pblue}}%
}
begin{document}
%maketitle
chapter{Hello LaTeX}
begin{lstlisting}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{lstlisting}
end{document}
listings tcolorbox
I want to insert lstlisting inside a tcolorbox which must has a title and title can be hidden whenever I need, also it's top right and bottom left corner will be rounded something like this:
I know how to use tcolorbox and lstlisting but I don't know how to use them together. Could anyone please help me? Any alternate solution without tcolorbox will be also appreciated.
My code snippet :
documentclass[10pt,a4paper,oneside]{book}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
usepackage{graphicx}
usepackage[left=2.00cm, right=2.00cm, top=2.00cm, bottom=2.00cm, showframe]{geometry}
author{Ravi}
title{How to wite code in LaTeX}
%%%%%%%%%%%%%%% CODE STYLE %%%%%%%%%%%%%%%
usepackage{blindtext}
usepackage{xcolor}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
renewcommand{rmdefault}{phv}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
usepackage{listings}
usepackage[T1]{fontenc}
usepackage{inconsolata}
lstset {
language=Java,%
basicstyle=fontfamily{AnonymousPro}selectfont,%
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},%
commentstyle=bfseriesitshapecolor{black!60},%
showspaces=false,
showtabs=false,
breaklines=true,%
showstringspaces=false,
%breakatwhitespace=true,
%numbers=left,%
%numbersep=8pt,%
%numberstyle=tiny,%
rulecolor=color{white!60!black},%
breaklines=true,%
frame=single,%single
%keepspaces=true,%
xleftmargin=1.5mm,%parindent
xrightmargin=1.5mm,%
framerule=1.2pt,%
backgroundcolor=color{gray!8},%
%morecomment=[s][bfseriescolor{orange!40!red}]{@}{Override},
tabsize=1,
}
lstset{emph={%
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape, %
},emphstyle={bfseriescolor{pblue}}%
}
begin{document}
%maketitle
chapter{Hello LaTeX}
begin{lstlisting}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{lstlisting}
end{document}
listings tcolorbox
listings tcolorbox
edited 14 hours ago
JouleV
10.9k22560
10.9k22560
asked 21 hours ago
RaviRavi
1928
1928
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your tcolorbox
style can be set as follows
documentclass{article}
usepackage[most]{tcolorbox}
newtcolorbox{mycode}[2]{%
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,
colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm},
fonttitle=color{black}itshape,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title={#2},#1
}
usepackage{lipsum}
begin{document}
begin{mycode}{This is some blahblah}
lipsum[1]
end{mycode}
end{document}
So let's convert it to a listings
tcolorbox
:
documentclass{article}
usepackage[most]{tcolorbox}
tcbuselibrary{listings}
usepackage{lipsum}
usepackage{xcolor}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
begin{document}
begin{tcblisting}{
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm
},
fonttitle=color{black}itshapettfamily,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title=MainActivity.java,
listing only,
listing options={
language=Java,
basicstyle=fontfamily{AnonymousPro}selectfont,
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},
commentstyle=bfseriesitshapecolor{black!60},
showspaces=false,
showtabs=false,
breaklines=true,
showstringspaces=false,
tabsize=1,
emph={
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape,
},
emphstyle={bfseriescolor{pblue}}
}
}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{tcblisting}
end{document}
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483289%2fhow-to-use-lstlisting-with-tcolorbox%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your tcolorbox
style can be set as follows
documentclass{article}
usepackage[most]{tcolorbox}
newtcolorbox{mycode}[2]{%
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,
colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm},
fonttitle=color{black}itshape,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title={#2},#1
}
usepackage{lipsum}
begin{document}
begin{mycode}{This is some blahblah}
lipsum[1]
end{mycode}
end{document}
So let's convert it to a listings
tcolorbox
:
documentclass{article}
usepackage[most]{tcolorbox}
tcbuselibrary{listings}
usepackage{lipsum}
usepackage{xcolor}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
begin{document}
begin{tcblisting}{
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm
},
fonttitle=color{black}itshapettfamily,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title=MainActivity.java,
listing only,
listing options={
language=Java,
basicstyle=fontfamily{AnonymousPro}selectfont,
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},
commentstyle=bfseriesitshapecolor{black!60},
showspaces=false,
showtabs=false,
breaklines=true,
showstringspaces=false,
tabsize=1,
emph={
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape,
},
emphstyle={bfseriescolor{pblue}}
}
}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{tcblisting}
end{document}
add a comment |
Your tcolorbox
style can be set as follows
documentclass{article}
usepackage[most]{tcolorbox}
newtcolorbox{mycode}[2]{%
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,
colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm},
fonttitle=color{black}itshape,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title={#2},#1
}
usepackage{lipsum}
begin{document}
begin{mycode}{This is some blahblah}
lipsum[1]
end{mycode}
end{document}
So let's convert it to a listings
tcolorbox
:
documentclass{article}
usepackage[most]{tcolorbox}
tcbuselibrary{listings}
usepackage{lipsum}
usepackage{xcolor}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
begin{document}
begin{tcblisting}{
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm
},
fonttitle=color{black}itshapettfamily,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title=MainActivity.java,
listing only,
listing options={
language=Java,
basicstyle=fontfamily{AnonymousPro}selectfont,
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},
commentstyle=bfseriesitshapecolor{black!60},
showspaces=false,
showtabs=false,
breaklines=true,
showstringspaces=false,
tabsize=1,
emph={
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape,
},
emphstyle={bfseriescolor{pblue}}
}
}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{tcblisting}
end{document}
add a comment |
Your tcolorbox
style can be set as follows
documentclass{article}
usepackage[most]{tcolorbox}
newtcolorbox{mycode}[2]{%
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,
colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm},
fonttitle=color{black}itshape,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title={#2},#1
}
usepackage{lipsum}
begin{document}
begin{mycode}{This is some blahblah}
lipsum[1]
end{mycode}
end{document}
So let's convert it to a listings
tcolorbox
:
documentclass{article}
usepackage[most]{tcolorbox}
tcbuselibrary{listings}
usepackage{lipsum}
usepackage{xcolor}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
begin{document}
begin{tcblisting}{
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm
},
fonttitle=color{black}itshapettfamily,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title=MainActivity.java,
listing only,
listing options={
language=Java,
basicstyle=fontfamily{AnonymousPro}selectfont,
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},
commentstyle=bfseriesitshapecolor{black!60},
showspaces=false,
showtabs=false,
breaklines=true,
showstringspaces=false,
tabsize=1,
emph={
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape,
},
emphstyle={bfseriescolor{pblue}}
}
}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{tcblisting}
end{document}
Your tcolorbox
style can be set as follows
documentclass{article}
usepackage[most]{tcolorbox}
newtcolorbox{mycode}[2]{%
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,
colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm},
fonttitle=color{black}itshape,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title={#2},#1
}
usepackage{lipsum}
begin{document}
begin{mycode}{This is some blahblah}
lipsum[1]
end{mycode}
end{document}
So let's convert it to a listings
tcolorbox
:
documentclass{article}
usepackage[most]{tcolorbox}
tcbuselibrary{listings}
usepackage{lipsum}
usepackage{xcolor}
usepackage[T1]{fontenc}
usepackage[ttdefault=true]{AnonymousPro}
definecolor{pblue}{rgb}{0.13,0.13,1}
definecolor{pgreen}{rgb}{0,0.5,0}
begin{document}
begin{tcblisting}{
enhanced,
attach boxed title to top right={yshift=-tcboxedtitleheight},
boxed title style={
size=small,colback=gray!50,
colframe=gray!50,
sharp corners=downhill,
arc=.5cm,
top=1mm,bottom=1mm,left=1mm,right=1mm
},
fonttitle=color{black}itshapettfamily,
colframe=gray!20,
top=tcboxedtitleheight,
bottom=tcboxedtitleheight,
sharp corners=downhill,
arc=.5cm,
title=MainActivity.java,
listing only,
listing options={
language=Java,
basicstyle=fontfamily{AnonymousPro}selectfont,
keywordstyle=bfseriescolor{pblue},
stringstyle=bfseriesitshapecolor{green!40!black},
commentstyle=bfseriesitshapecolor{black!60},
showspaces=false,
showtabs=false,
breaklines=true,
showstringspaces=false,
tabsize=1,
emph={
downto, for, String, TextView, Toast, Button, EditText, ImageView, Typeface, Intent, WebView, WebSettings, SwipeRefreshLayout, RelativeLayout, Animation, AlertDialog, SharedPreferences, Editor, ToggleButton, CardView, LinearLayout, gradient, shape,
},
emphstyle={bfseriescolor{pblue}}
}
}
String s = "Hello World";
Animation from_top = AnimationUtils.loadAnimation(this, R.anim.from_top);
imageView.setAnimation(from_top);
// change activity with fade animation
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
startActivity(intent);
overridePendingTransition(R.anim.fade_in,R.anim.fade_out);
finish();
}
}, SPLASH_TIMEOUT);
end{tcblisting}
end{document}
answered 20 hours ago
JouleVJouleV
10.9k22560
10.9k22560
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f483289%2fhow-to-use-lstlisting-with-tcolorbox%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown