One tcbcolorbox with alternative color in different linesTikZ: Cropping the Bounding BoxDifferent...

When the voltage is increased does the speed of electrons increase or does the electron density increase?

Why zero tolerance on nudity in space?

Can I retract my name from an already published manuscript?

How to approximate rolls for potions of healing using only d6's?

Discrepancy in P/E ratio of stocks in Robinhood app?

It took me a lot of time to make this, pls like. (YouTube Comments #1)

How should I state my MS degree in my CV when it was in practice a joint-program?

Am I a Rude Number?

Can a hotel cancel a confirmed reservation?

Are Giants classified as Beasts or Beings?

How can I introduce myself to a party without saying that I am a rogue?

What is the wife of a henpecked husband called?

Can the Count of Monte Cristo's calculation of poison dosage be explained?

Why avoid shared user accounts?

How to roast potatoes in the oven to make them crispy?

Overfitting and Underfitting

Meth dealer reference in Family Guy

Eww, those bytes are gross

By American Standards

What kind of hardware implements Fourier transform?

Inalienable or irrefutable

How do I add a variable to this curl command?

I am on the US no-fly list. What can I do in order to be allowed on flights which go through US airspace?

Why did Jodrell Bank assist the Soviet Union to collect data from their spacecraft in the mid 1960's?



One tcbcolorbox with alternative color in different lines


TikZ: Cropping the Bounding BoxDifferent colorDifferent minted styles for different languagesWhat are the advantages of the different ways you can use tcolorbox together with minted? Is one to be preferred over the other?Setting tcolorbox color to Frankfurt default colorBackground color for a range of lines in MintedMarkers with different colors in one plotChange background color across different environmentsHighlight function in minted with background coloralternative box style: table and curve













5















This is what I want to get



origin style



This is what I already have



tcolorbox style



documentclass{article}
usepackage{geometry}
geometry{left=2.5cm,right=2cm,top=2.5cm,bottom=2.5cm}
usepackage{fontawesome}
usepackage{varwidth}
% tcolorbox
usepackage[dvipsnames, svgnames]{xcolor}
definecolor{mpurple}{RGB}{48,10,36}
definecolor{mgray}{RGB}{70,72,67}
definecolor{ogray}{RGB}{148,147,141}
definecolor{oorange}{RGB}{233,101,56}
definecolor{termimal}{RGB}{80,78,70}
definecolor{linux}{RGB}{0,39,51}
definecolor{cvgrayc}{RGB}{247,247,247}
definecolor{cvgray}{RGB}{220,220,220}
definecolor{cvgrayb}{RGB}{153,153,153}
definecolor{cvblue}{RGB}{223,238,255}

usepackage[minted]{tcolorbox}
tcbuselibrary{skins, listings, xparse, breakable}

%% fontsize definition
makeatletter
defthu@def@fontsize#1#2{%
expandafternewcommandcsname #1endcsname[1][1.3]{%
fontsize{#2}{##1dimexpr #2}selectfont%
}%
}
thu@def@fontsize{chuhao}{42bp}
thu@def@fontsize{xiaochu}{36bp}
thu@def@fontsize{yihao}{26bp}
thu@def@fontsize{xiaoyi}{24bp}
thu@def@fontsize{erhao}{22bp}
thu@def@fontsize{xiaoer}{18bp}
thu@def@fontsize{sanhao}{16bp}
thu@def@fontsize{xiaosan}{15bp}
thu@def@fontsize{sihao}{14bp}
thu@def@fontsize{banxiaosi}{13bp}
thu@def@fontsize{xiaosi}{12bp}
thu@def@fontsize{dawu}{11bp}
thu@def@fontsize{wuhao}{10.5bp}
thu@def@fontsize{xiaowu}{9bp}
thu@def@fontsize{liuhao}{7.5bp}
thu@def@fontsize{xiaoliu}{6.5bp}
thu@def@fontsize{qihao}{5.5bp}
thu@def@fontsize{bahao}{5bp}
makeatother

% redefine the line number font
renewcommand{theFancyVerbLine}{%
sffamilytextcolor[rgb]{0.5,0.5,1.0}{%
scriptsizeoldstylenums{%
arabic{FancyVerbLine}%
}%
}%
}

tcbset{skin=enhanced,
cv/.style={
boxrule=0.4mm,
pad after break=-1.5ex,
breakable,drop shadow,listing engine=minted,minted style=xcode,
minted options={mathescape,breaklines,fontsize=wuhao,linenos,
numbersep=3mm},attach boxed title to top,
colback=blue!5!white,colframe=blue!75!black,
left=6mm,right=3mm,enhanced,
colframe=tcbcol@back!60!black,colback=tcbcol@back!30!white,colbacktitle=cvgray,
fonttitle=ttfamily,coltitle=black,
overlay broken = {begin{tcbclipinterior}
fill[cvblue] (frame.south west) rectangle ([xshift=5mm]frame.north west);
end{tcbclipinterior}},
underlay boxed title = {begin{tcbclipinterior}fill[cvblue] (frame.south west) rectangle ([xshift=5mm,yshift=0mm]frame.north west);end{tcbclipinterior}}
}}
newcounter{cvcounter}
DeclareTCBListing[use counter=cvcounter]{langCVOne}{ O{python} o o m }{%
listing only,
cv,
minted language=#1,
title={Program List thecvcounter:~#4},%thetcbcounter
label = #2,
overlay unbroken and first ={begin{tcbclipinterior}
node[inner sep=0pt,anchor=north east,yshift=-3pt,xshift=-5pt,text=cvgrayb] at (frame.north east){ttfamilyfaFileText faCode faCodeFork faCopy faExternalLink IfNoValueTF{#3}{MakeUppercase#1}{#3}};end{tcbclipinterior}}}

begin{document}
begin{langCVOne}{FAST algorithm}
import cv2
import numpy as np
from matplotlib import pyplot as plt

img = cv2.imread('7.jpg',0)

# Initiate FAST object with default values
fast = cv2.FastFeatureDetector_create(threshold=25)

# find and draw the keypoints
kp = fast.detect(img,None)
img2 = cv2.drawKeypoints(img, kp, None,color=(255,0,0))

print("Threshold: ", fast.getThreshold())
print("nonmaxSuppression: ", fast.getNonmaxSuppression())
print("neighborhood: ", fast.getType())
print("Total Keypoints with nonmaxSuppression: ", len(kp))

cv2.imwrite('fast_true.png',img2)

# Disable nonmaxSuppression
fast.setNonmaxSuppression(0)
kp = fast.detect(img,None)

print ("Total Keypoints without nonmaxSuppression: ", len(kp))

img3 = cv2.drawKeypoints(img, kp, None, color=(255,0,0))

cv2.imwrite('fast_false.png',img3)
end{langCVOne}
end{document}


How to draw different line in different color?










share|improve this question

























  • your code is not compileable

    – AndréC
    9 hours ago
















5















This is what I want to get



origin style



This is what I already have



tcolorbox style



documentclass{article}
usepackage{geometry}
geometry{left=2.5cm,right=2cm,top=2.5cm,bottom=2.5cm}
usepackage{fontawesome}
usepackage{varwidth}
% tcolorbox
usepackage[dvipsnames, svgnames]{xcolor}
definecolor{mpurple}{RGB}{48,10,36}
definecolor{mgray}{RGB}{70,72,67}
definecolor{ogray}{RGB}{148,147,141}
definecolor{oorange}{RGB}{233,101,56}
definecolor{termimal}{RGB}{80,78,70}
definecolor{linux}{RGB}{0,39,51}
definecolor{cvgrayc}{RGB}{247,247,247}
definecolor{cvgray}{RGB}{220,220,220}
definecolor{cvgrayb}{RGB}{153,153,153}
definecolor{cvblue}{RGB}{223,238,255}

usepackage[minted]{tcolorbox}
tcbuselibrary{skins, listings, xparse, breakable}

%% fontsize definition
makeatletter
defthu@def@fontsize#1#2{%
expandafternewcommandcsname #1endcsname[1][1.3]{%
fontsize{#2}{##1dimexpr #2}selectfont%
}%
}
thu@def@fontsize{chuhao}{42bp}
thu@def@fontsize{xiaochu}{36bp}
thu@def@fontsize{yihao}{26bp}
thu@def@fontsize{xiaoyi}{24bp}
thu@def@fontsize{erhao}{22bp}
thu@def@fontsize{xiaoer}{18bp}
thu@def@fontsize{sanhao}{16bp}
thu@def@fontsize{xiaosan}{15bp}
thu@def@fontsize{sihao}{14bp}
thu@def@fontsize{banxiaosi}{13bp}
thu@def@fontsize{xiaosi}{12bp}
thu@def@fontsize{dawu}{11bp}
thu@def@fontsize{wuhao}{10.5bp}
thu@def@fontsize{xiaowu}{9bp}
thu@def@fontsize{liuhao}{7.5bp}
thu@def@fontsize{xiaoliu}{6.5bp}
thu@def@fontsize{qihao}{5.5bp}
thu@def@fontsize{bahao}{5bp}
makeatother

% redefine the line number font
renewcommand{theFancyVerbLine}{%
sffamilytextcolor[rgb]{0.5,0.5,1.0}{%
scriptsizeoldstylenums{%
arabic{FancyVerbLine}%
}%
}%
}

tcbset{skin=enhanced,
cv/.style={
boxrule=0.4mm,
pad after break=-1.5ex,
breakable,drop shadow,listing engine=minted,minted style=xcode,
minted options={mathescape,breaklines,fontsize=wuhao,linenos,
numbersep=3mm},attach boxed title to top,
colback=blue!5!white,colframe=blue!75!black,
left=6mm,right=3mm,enhanced,
colframe=tcbcol@back!60!black,colback=tcbcol@back!30!white,colbacktitle=cvgray,
fonttitle=ttfamily,coltitle=black,
overlay broken = {begin{tcbclipinterior}
fill[cvblue] (frame.south west) rectangle ([xshift=5mm]frame.north west);
end{tcbclipinterior}},
underlay boxed title = {begin{tcbclipinterior}fill[cvblue] (frame.south west) rectangle ([xshift=5mm,yshift=0mm]frame.north west);end{tcbclipinterior}}
}}
newcounter{cvcounter}
DeclareTCBListing[use counter=cvcounter]{langCVOne}{ O{python} o o m }{%
listing only,
cv,
minted language=#1,
title={Program List thecvcounter:~#4},%thetcbcounter
label = #2,
overlay unbroken and first ={begin{tcbclipinterior}
node[inner sep=0pt,anchor=north east,yshift=-3pt,xshift=-5pt,text=cvgrayb] at (frame.north east){ttfamilyfaFileText faCode faCodeFork faCopy faExternalLink IfNoValueTF{#3}{MakeUppercase#1}{#3}};end{tcbclipinterior}}}

begin{document}
begin{langCVOne}{FAST algorithm}
import cv2
import numpy as np
from matplotlib import pyplot as plt

img = cv2.imread('7.jpg',0)

# Initiate FAST object with default values
fast = cv2.FastFeatureDetector_create(threshold=25)

# find and draw the keypoints
kp = fast.detect(img,None)
img2 = cv2.drawKeypoints(img, kp, None,color=(255,0,0))

print("Threshold: ", fast.getThreshold())
print("nonmaxSuppression: ", fast.getNonmaxSuppression())
print("neighborhood: ", fast.getType())
print("Total Keypoints with nonmaxSuppression: ", len(kp))

cv2.imwrite('fast_true.png',img2)

# Disable nonmaxSuppression
fast.setNonmaxSuppression(0)
kp = fast.detect(img,None)

print ("Total Keypoints without nonmaxSuppression: ", len(kp))

img3 = cv2.drawKeypoints(img, kp, None, color=(255,0,0))

cv2.imwrite('fast_false.png',img3)
end{langCVOne}
end{document}


How to draw different line in different color?










share|improve this question

























  • your code is not compileable

    – AndréC
    9 hours ago














5












5








5


4






This is what I want to get



origin style



This is what I already have



tcolorbox style



documentclass{article}
usepackage{geometry}
geometry{left=2.5cm,right=2cm,top=2.5cm,bottom=2.5cm}
usepackage{fontawesome}
usepackage{varwidth}
% tcolorbox
usepackage[dvipsnames, svgnames]{xcolor}
definecolor{mpurple}{RGB}{48,10,36}
definecolor{mgray}{RGB}{70,72,67}
definecolor{ogray}{RGB}{148,147,141}
definecolor{oorange}{RGB}{233,101,56}
definecolor{termimal}{RGB}{80,78,70}
definecolor{linux}{RGB}{0,39,51}
definecolor{cvgrayc}{RGB}{247,247,247}
definecolor{cvgray}{RGB}{220,220,220}
definecolor{cvgrayb}{RGB}{153,153,153}
definecolor{cvblue}{RGB}{223,238,255}

usepackage[minted]{tcolorbox}
tcbuselibrary{skins, listings, xparse, breakable}

%% fontsize definition
makeatletter
defthu@def@fontsize#1#2{%
expandafternewcommandcsname #1endcsname[1][1.3]{%
fontsize{#2}{##1dimexpr #2}selectfont%
}%
}
thu@def@fontsize{chuhao}{42bp}
thu@def@fontsize{xiaochu}{36bp}
thu@def@fontsize{yihao}{26bp}
thu@def@fontsize{xiaoyi}{24bp}
thu@def@fontsize{erhao}{22bp}
thu@def@fontsize{xiaoer}{18bp}
thu@def@fontsize{sanhao}{16bp}
thu@def@fontsize{xiaosan}{15bp}
thu@def@fontsize{sihao}{14bp}
thu@def@fontsize{banxiaosi}{13bp}
thu@def@fontsize{xiaosi}{12bp}
thu@def@fontsize{dawu}{11bp}
thu@def@fontsize{wuhao}{10.5bp}
thu@def@fontsize{xiaowu}{9bp}
thu@def@fontsize{liuhao}{7.5bp}
thu@def@fontsize{xiaoliu}{6.5bp}
thu@def@fontsize{qihao}{5.5bp}
thu@def@fontsize{bahao}{5bp}
makeatother

% redefine the line number font
renewcommand{theFancyVerbLine}{%
sffamilytextcolor[rgb]{0.5,0.5,1.0}{%
scriptsizeoldstylenums{%
arabic{FancyVerbLine}%
}%
}%
}

tcbset{skin=enhanced,
cv/.style={
boxrule=0.4mm,
pad after break=-1.5ex,
breakable,drop shadow,listing engine=minted,minted style=xcode,
minted options={mathescape,breaklines,fontsize=wuhao,linenos,
numbersep=3mm},attach boxed title to top,
colback=blue!5!white,colframe=blue!75!black,
left=6mm,right=3mm,enhanced,
colframe=tcbcol@back!60!black,colback=tcbcol@back!30!white,colbacktitle=cvgray,
fonttitle=ttfamily,coltitle=black,
overlay broken = {begin{tcbclipinterior}
fill[cvblue] (frame.south west) rectangle ([xshift=5mm]frame.north west);
end{tcbclipinterior}},
underlay boxed title = {begin{tcbclipinterior}fill[cvblue] (frame.south west) rectangle ([xshift=5mm,yshift=0mm]frame.north west);end{tcbclipinterior}}
}}
newcounter{cvcounter}
DeclareTCBListing[use counter=cvcounter]{langCVOne}{ O{python} o o m }{%
listing only,
cv,
minted language=#1,
title={Program List thecvcounter:~#4},%thetcbcounter
label = #2,
overlay unbroken and first ={begin{tcbclipinterior}
node[inner sep=0pt,anchor=north east,yshift=-3pt,xshift=-5pt,text=cvgrayb] at (frame.north east){ttfamilyfaFileText faCode faCodeFork faCopy faExternalLink IfNoValueTF{#3}{MakeUppercase#1}{#3}};end{tcbclipinterior}}}

begin{document}
begin{langCVOne}{FAST algorithm}
import cv2
import numpy as np
from matplotlib import pyplot as plt

img = cv2.imread('7.jpg',0)

# Initiate FAST object with default values
fast = cv2.FastFeatureDetector_create(threshold=25)

# find and draw the keypoints
kp = fast.detect(img,None)
img2 = cv2.drawKeypoints(img, kp, None,color=(255,0,0))

print("Threshold: ", fast.getThreshold())
print("nonmaxSuppression: ", fast.getNonmaxSuppression())
print("neighborhood: ", fast.getType())
print("Total Keypoints with nonmaxSuppression: ", len(kp))

cv2.imwrite('fast_true.png',img2)

# Disable nonmaxSuppression
fast.setNonmaxSuppression(0)
kp = fast.detect(img,None)

print ("Total Keypoints without nonmaxSuppression: ", len(kp))

img3 = cv2.drawKeypoints(img, kp, None, color=(255,0,0))

cv2.imwrite('fast_false.png',img3)
end{langCVOne}
end{document}


How to draw different line in different color?










share|improve this question
















This is what I want to get



origin style



This is what I already have



tcolorbox style



documentclass{article}
usepackage{geometry}
geometry{left=2.5cm,right=2cm,top=2.5cm,bottom=2.5cm}
usepackage{fontawesome}
usepackage{varwidth}
% tcolorbox
usepackage[dvipsnames, svgnames]{xcolor}
definecolor{mpurple}{RGB}{48,10,36}
definecolor{mgray}{RGB}{70,72,67}
definecolor{ogray}{RGB}{148,147,141}
definecolor{oorange}{RGB}{233,101,56}
definecolor{termimal}{RGB}{80,78,70}
definecolor{linux}{RGB}{0,39,51}
definecolor{cvgrayc}{RGB}{247,247,247}
definecolor{cvgray}{RGB}{220,220,220}
definecolor{cvgrayb}{RGB}{153,153,153}
definecolor{cvblue}{RGB}{223,238,255}

usepackage[minted]{tcolorbox}
tcbuselibrary{skins, listings, xparse, breakable}

%% fontsize definition
makeatletter
defthu@def@fontsize#1#2{%
expandafternewcommandcsname #1endcsname[1][1.3]{%
fontsize{#2}{##1dimexpr #2}selectfont%
}%
}
thu@def@fontsize{chuhao}{42bp}
thu@def@fontsize{xiaochu}{36bp}
thu@def@fontsize{yihao}{26bp}
thu@def@fontsize{xiaoyi}{24bp}
thu@def@fontsize{erhao}{22bp}
thu@def@fontsize{xiaoer}{18bp}
thu@def@fontsize{sanhao}{16bp}
thu@def@fontsize{xiaosan}{15bp}
thu@def@fontsize{sihao}{14bp}
thu@def@fontsize{banxiaosi}{13bp}
thu@def@fontsize{xiaosi}{12bp}
thu@def@fontsize{dawu}{11bp}
thu@def@fontsize{wuhao}{10.5bp}
thu@def@fontsize{xiaowu}{9bp}
thu@def@fontsize{liuhao}{7.5bp}
thu@def@fontsize{xiaoliu}{6.5bp}
thu@def@fontsize{qihao}{5.5bp}
thu@def@fontsize{bahao}{5bp}
makeatother

% redefine the line number font
renewcommand{theFancyVerbLine}{%
sffamilytextcolor[rgb]{0.5,0.5,1.0}{%
scriptsizeoldstylenums{%
arabic{FancyVerbLine}%
}%
}%
}

tcbset{skin=enhanced,
cv/.style={
boxrule=0.4mm,
pad after break=-1.5ex,
breakable,drop shadow,listing engine=minted,minted style=xcode,
minted options={mathescape,breaklines,fontsize=wuhao,linenos,
numbersep=3mm},attach boxed title to top,
colback=blue!5!white,colframe=blue!75!black,
left=6mm,right=3mm,enhanced,
colframe=tcbcol@back!60!black,colback=tcbcol@back!30!white,colbacktitle=cvgray,
fonttitle=ttfamily,coltitle=black,
overlay broken = {begin{tcbclipinterior}
fill[cvblue] (frame.south west) rectangle ([xshift=5mm]frame.north west);
end{tcbclipinterior}},
underlay boxed title = {begin{tcbclipinterior}fill[cvblue] (frame.south west) rectangle ([xshift=5mm,yshift=0mm]frame.north west);end{tcbclipinterior}}
}}
newcounter{cvcounter}
DeclareTCBListing[use counter=cvcounter]{langCVOne}{ O{python} o o m }{%
listing only,
cv,
minted language=#1,
title={Program List thecvcounter:~#4},%thetcbcounter
label = #2,
overlay unbroken and first ={begin{tcbclipinterior}
node[inner sep=0pt,anchor=north east,yshift=-3pt,xshift=-5pt,text=cvgrayb] at (frame.north east){ttfamilyfaFileText faCode faCodeFork faCopy faExternalLink IfNoValueTF{#3}{MakeUppercase#1}{#3}};end{tcbclipinterior}}}

begin{document}
begin{langCVOne}{FAST algorithm}
import cv2
import numpy as np
from matplotlib import pyplot as plt

img = cv2.imread('7.jpg',0)

# Initiate FAST object with default values
fast = cv2.FastFeatureDetector_create(threshold=25)

# find and draw the keypoints
kp = fast.detect(img,None)
img2 = cv2.drawKeypoints(img, kp, None,color=(255,0,0))

print("Threshold: ", fast.getThreshold())
print("nonmaxSuppression: ", fast.getNonmaxSuppression())
print("neighborhood: ", fast.getType())
print("Total Keypoints with nonmaxSuppression: ", len(kp))

cv2.imwrite('fast_true.png',img2)

# Disable nonmaxSuppression
fast.setNonmaxSuppression(0)
kp = fast.detect(img,None)

print ("Total Keypoints without nonmaxSuppression: ", len(kp))

img3 = cv2.drawKeypoints(img, kp, None, color=(255,0,0))

cv2.imwrite('fast_false.png',img3)
end{langCVOne}
end{document}


How to draw different line in different color?







tikz-pgf tcolorbox minted






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 9 hours ago









JouleV

4,6641938




4,6641938










asked Aug 9 '18 at 5:54









user9047095user9047095

261




261













  • your code is not compileable

    – AndréC
    9 hours ago



















  • your code is not compileable

    – AndréC
    9 hours ago

















your code is not compileable

– AndréC
9 hours ago





your code is not compileable

– AndréC
9 hours ago










0






active

oldest

votes











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f445258%2fone-tcbcolorbox-with-alternative-color-in-different-lines%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f445258%2fone-tcbcolorbox-with-alternative-color-in-different-lines%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Installing LyX: “No textclass is found.”LyX installation error- text class not found- 'Reconfigure' or...

(1602) Indiana Índice Designación y nombre Características orbitales Véase...

Universidad Autónoma de Occidente Índice Historia Campus Facultades Programas Académicos Medios de...