I wouldn’t apply those format changes directly in the argument of the sectional units since the formatting changes will also appear in the ToC and in the headers producing undesired results; the following minimal working example reproduces the problem mentioned:
documentclass{report}
usepackage[dvipsnames]{xcolor}
usepackage{lipsum}
pagestyle{headings}
begin{document}
chapter{color{Maroon}My Title}
lipsum[1-30]
end{document}
since MakeUppercase
is used to produce the headers, LaTeX sees the color name as «MAROON» (uppercased) and this triggers the error message
! Package xcolor Error: Undefined color `MAROON'.
To prevent this kind of problems, I suggest using the sectsty
or the titlesec
packages to perform changes to the sectional unit formatting. An example with sectsty
:
documentclass{report}
usepackage[dvipsnames]{xcolor}
usepackage{sectsty}
usepackage{lipsum}% just to generate text for the example
chapterfont{color{Maroon}}
begin{document}
chapter{My Title}
lipsum[4]
end{document}
Now that additional information has been given in the comments, it’s clear that a different approach is needed since the fncychap
package is beeing used to produce the chapter titles in the Conny
style. The MWE reproducing the problem:
documentclass{report}
usepackage[dvipsnames]{xcolor}
usepackage[Conny]{fncychap}
usepackage{lipsum}
begin{document}
chapter{color{Maroon}My Title}
lipsum[1-30]
end{document}
In this case, the modification to the title color can be done by using ChTitleVar
of only the title in the heading must receive color:
documentclass{report}
usepackage[dvipsnames]{xcolor}
usepackage[Conny]{fncychap}
usepackage{lipsum}
ChTitleVar{centeringHugecolor{Maroon}}
begin{document}
chapter{My Title}
lipsum[1-30]
end{document}
If the color change must affect all the heading, a possible solution can be obtained by redefining DOCH
:
documentclass{report}
usepackage[dvipsnames]{xcolor}
usepackage[Conny]{fncychap}
usepackage{lipsum}
makeatletter
renewcommand{DOCH}{%
color{Maroon}mghrulefill{3RW}parnobreak
vskip -0.5baselineskip
mghrulefill{RW}parnobreak
CNVFmN{@chapapp}space CNoVthechapter
parnobreak
vskip -0.5baselineskip
}
makeatother
begin{document}
chapter{My Title}
lipsum[1-30]
end{document}
Comments
yihui
added a commit
to yihui/knitr
that referenced
this issue
Dec 8, 2021
yihui
added a commit
to yihui/knitr
that referenced
this issue
Dec 14, 2021
clrpackages
pushed a commit
to clearlinux-pkgs/R-knitr
that referenced
this issue
Dec 18, 2021
Christophe Dervieux (3): fix is_cran() (#2070) Allow to trigger knitr-example check manually Clarify examples in NEWS (#2080) Joyce Robbins (1): Improve documentation by specifying the html formats that can excluded from is_html_output() (#2058) Yihui Xie (29): start the next version just reuse the object `markdown_mode` when parsing Rmd, if one chunk is not complete yet but another chunk is detected, see if the new chunk header is of the same level as the previous chunk (if it is, treat it as a new chunk; otherwise treat it as part of the previous chunk) add a `comment` engine to comment out content when the doc is not Rmd, also start a new chunk when in.chunk = TRUE and is.begin = TRUE if the chunk header is quoted, the footer needs to be quoted as well (simongrund1/mitml#15) throw an error if detecting unmatched indentation in chunk header and footer when not in CRAN's R CMD check improve the message when unbalanced chunk delimiters are detected in R Markdown documents only disallow unmatched indentation of ```{r} and ``` during R CMD check when not running on CRAN, which means an error will be thrown if you run R CMD check locally or in Github action (in either case, you may be developing the package; if that's the case, you should fix the unbalanced chunk delimiters) make it possible to control is_cran() via R_CRANDALF directly don't print internal options for quarto do not throw an error in the case of indented chunk footer but not header, e.g., allow any types of unbalanced chunk delimiters on CRAN and BioC during R CMD check, not only the case of unmatched indentation respect the package option root.dir when looking for child documents (#2059) use base_pkgs() in xfun v0.27 tweak the message add a `verbatim` engine to output verbatim content (#2060) reorder engines one engine per line clarify the behavior of the verbatim engine in other types of documents such as Rnw/Rhtml/... add a new chunk option `file` to read an external file into the chunk Provide an `embed` engine to embed external file verbatim (#2076) define colors via AddToHook{} to fix the issue latex3/xcolor#10 use xfun::is_R_CMD_check() again I don't know why this example is time-consuming on win-builder use the --as-cran flag not sure why this test is failing on r-devel-windows-x86_64-new-TK; use %==% so that the diffs can be printed ignore the .lyx document when building the tarball CRAN release v1.37
yihui
added a commit
to yihui/knitr
that referenced
this issue
Mar 25, 2022
cderv
pushed a commit
to cderv/knitr
that referenced
this issue
Aug 23, 2022
Содержание
- Package xcolor Error: Undefined color `gold’
- 1 Answer 1
- Error with xcolor package
- 2 Answers 2
- Package xcolor Error: Undefined colors “Maroon”/“Royal Blue” when master has PDF included classicthesis 3.1
- 5 Answers 5
- Package xcolor Error: Undefined color `gray45′. error when using lstlistings in LaTeX
- 2 Answers 2
- Related
- Hot Network Questions
- Subscribe to RSS
Package xcolor Error: Undefined color `gold’
When I compile this document using pdflatex , my chapter’s (and sections and subsections, too) titles are, respectively, blue (here defined as ‘azzurro’) and gold.
I would like that all titles and subtitles be black.
This is the document:
In this way the file is compiled like the attached image.
When I replace the colors with ‘black’ as
it give me these errors:
Package xcolor Error: Undefined color gold
Package xcolor Error: Undefined color azzurro
1 Answer 1
Observe that you are using color (twice: one for counter and other for title) in the definition of subsection .
So just replace azurro by black or even better delete color , since black is the default color.
Do the same in the definition of subsection .
A bad but faster solution would be to keep the definitions and just change RGB values to the color named azurro , ie, definecolor <0,0,0>. With that you will get a black azurro .
Finally, the error Package xcolor Error: Undefined color gold you got was because you had changed the name of the defined color ( gold by black ) but you were still using the gold color in codes above. This is why undefined color error.
Источник
Error with xcolor package
I would like to write the chapters’ titles in my LaTeX document in an other color, so I imported the following package:
But when I try this:
I get the following error:
Is there any other package that must be declared to make this works?
and yes I use pdftex.
2 Answers 2
I wouldn’t apply those format changes directly in the argument of the sectional units since the formatting changes will also appear in the ToC and in the headers producing undesired results; the following minimal working example reproduces the problem mentioned:
since MakeUppercase is used to produce the headers, LaTeX sees the color name as «MAROON» (uppercased) and this triggers the error message
To prevent this kind of problems, I suggest using the sectsty or the titlesec packages to perform changes to the sectional unit formatting. An example with sectsty :
Now that additional information has been given in the comments, it’s clear that a different approach is needed since the fncychap package is beeing used to produce the chapter titles in the Conny style. The MWE reproducing the problem:
In this case, the modification to the title color can be done by using ChTitleVar of only the title in the heading must receive color:
If the color change must affect all the heading, a possible solution can be obtained by redefining DOCH :
Источник
Package xcolor Error: Undefined colors “Maroon”/“Royal Blue” when master has PDF included classicthesis 3.1
I am using classicthesis 3.1 in Lyx 2.0.6. When I include PDFs in the master document, I receive the following error:
This topic has previously been asked and closed, but provided solutions do not work:
When I include PDFs in the original classicthesis template, I can get the document to compile if I do not remove the original Chapter .lyx files. Once changed, the original template does not always compile. classicthesis.sty has not been modified as shown below.
Uncommenting definecolor for Maroon , RoyalBlue and Black does not resolve the issue.
I have modified classicthesis-config.tex to change the text area and added new commands under user ad-hoc commands, but otherwise it is set to default.
Is this a conflict between xcolor and pdfpages ? Or a colorspace issue?
5 Answers 5
I also encountered this problem and found the following solution.
This problem is caused by the pdfpages package that itself load the xcolor package with no option, while the problematic colors are defined in the dvipsnames option of the xcolor package. This ‘bug’ is described in ‘Pitfalls’ section of the pdfpages manual.
The solution to these, explained in the manual, is to load the xcolor package with the dvipsnames option before the pdfpages package. Which is actually done by classicthesis.sty .
The problem is that when you use the Lyx internal PDF include, it load the pdfpages package before any user supplied options. So the only workaround is not to use the Lyx PDF include.
Declare the usepackage in preamble and then include the pdf through the includepdf[ ] < >in an evil red text in latex.
Источник
Package xcolor Error: Undefined color `gray45′. error when using lstlistings in LaTeX
I am working with LaTeX in Overleaf, and I have the next problem:
When I put this code fragment:
I am getting an error:
That error is shown in line:
I don’t really understand what is happening. Could anyone tell me, please?
2 Answers 2
I don’t know, where your problem actually arises.
You should not load the color -package three times, (two times as color , one time as xcolor ). I removed two of them. Also, you MWE lacks a documentclass and begin . end . I added them and everything is fine to me.
The error was solved defining a color named ‘gray45’, like this:
It seems that when entering a character # into a listings box, it ties to compile it as a color, when it is not. But, as I said, defining the color the error was solved.
Hot Network Questions
To subscribe to this RSS feed, copy and paste this URL into your RSS reader.
Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2023.1.14.43159
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.
Источник
I was writing a coloured book that requires to define 12 colours. However, sometimes I get !package xcolor Error: Undefined color
. However, it does not specifiy any colors went wrong but indicates the line of error contains mainmatter
. Here is my MWE.
documentclass[12pt,a4paper,headinclude,openright]{scrbook}
usepackage{etoolbox}
usepackage[usenames,dvipsnames,svgnames,table,x11names]{xcolor}
usepackage{microtype}
definecolor{color01}{named}{Maroon}
definecolor{color02}{named}{Firebrick3}
renewcommandchapterbackcolor{%
ifcasevalue{chapter} or color01or color02fi}
usepackage[listings,theorems,skins,breakable]{tcolorbox}
%======================== Ch.1 boxes ===========================
tcbset{exercisestyle01/.style={arc=0.5mm, fonttitle=sffamilybfseries,colback=LightPink1,colframe=color01}}
newtcolorbox[auto counter,number within=chapter,list inside=eg]%
{examples01}[2][]{exercisestyle01,
title={Example ~thetcbcounter: #2}}
%===============================================================
begin{document}
begin{examples01}{Equation of position of double pendulum}
With two masses $m_1$ and $m_2$ are suspended on rigid string has length $r_1$ and $r_2$. Find the possible co-ordinates with respect to the origin point.
tcblower
First of all, it is a rotational motion, hence it requires co-ordinate systems to consist of angle co-ordinates. Since the $y$-axis is constant during motion, we imagine a cylindrical plane pass through the $y$-$z$ plane. There should be angles denoted as $theta_1$ for $m_1$, and $theta_2$ for $m_2$. (Note that the angles are not shown in here)
However, the double pendulum is hung not from the origin footnote{It can be due to our choice of reference frame.}. It can be said it is translated to a point where the pivot is. Such that the position, although not given in the diagram, is $A(x_0,y_0,z_0)$.
end{examples01}
backmatter
end{document}
The .log
file is such as
LaTeX Font Info: Font shape T1/pmy/m/sl' in size <40> not available
T1/pmy/m/it’ tried instead on input line 243.
(Font) Font shape
<example-image-a.png, id=188, 401.5pt x 301.125pt>
File: example-image-a.png Graphic file (type png) <use example-image-a.png>
Package pdftex.def Info: example-image-a.png used on input line 243.
(pdftex.def) Requested size: 85.35896pt x 42.67642pt.
! Package xcolor Error: Undefined color ` '.
See the xcolor package documentation for explanation.
Type H <return> for immediate help.
...
l.243 mainmatter
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
LaTeX Font Info: Font shape `T1/pmy/m/sl' in size <12> not available
(Font) Font shape `T1/pmy/m/it' tried instead on input line 243.
! Package pgfkeys Error: I do not know the key '/tikz/ ' and I am going to ignore it. Perhaps you misspelled it.
See the pgfkeys package documentation for explanation.
Type H <return> for immediate help.
...
l.243 mainmatter
This error message was generated by an errmessage
command, so I can't give any explicit help.
Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method.
LaTeX Font Info: Font shape `T1/pmy/m/sl' in size <17.28> not available
(Font) Font shape `T1/pmy/m/it' tried instead on input line 243.
! Package xcolor Error: Undefined color `'.
See the xcolor package documentation for explanation.
Type H <return> for immediate help.
...
l.243 mainmatter
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
[5 <c:/texlive/2013/texmf-dist/tex/latex/mwe/example-image-a.png>]
Normally I saw people have problems with xcolor
package, they do have a specific colour undefined.
Note:
- I understand that the MWE is compilable, but my document is not, which stresses me.
- I examined all possible clues, and… nothing solved.
-
m.carrara3
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
xcolor package and beamer
I have a problem; I’m using beamer class for my thesis presentation and I need to change the font’s color into a tabular enviroment but it doesn’t work.
After begin{document} I’m using this package
usepackage[dvipsnames]{xcolor}
I also post the code I’m using into the document:
resizebox{textwidth}{!}{ begin{tabular}{|l|c|} hline textbf{{textcolor{red}{Mg}}} & {textcolor{red}{59.20 $%$}} \ hline textbf{Al micrometrico} & 36.20 $%$ \ hline textbf{{textcolor{ForestGreen}{Al nanometrico}}} & {textcolor{ForestGreen}{23.04 $%$}} \ hline textbf{$MgH_2$} & 33.65 $%$ \ hline textbf{Al nano + $MgH_2$} & 37.15 $%$ \ hline end{tabular}}
Any suggestion?
M
-
localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
xcolor package and beamer
Postby localghost » Sat Sep 13, 2008 6:27 pm
I assume that you are compiling with pdflatex hence you are loading the xcolor package with the wrong option.
usepackage[svgnames]{xcolor}
This line has to be inserted in the preamble, not in the body of the document. Names of colors stay the same.
Best regards
Thorsten¹
-
m.carrara3
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
Re: xcolor package and beamer
Postby m.carrara3 » Sat Sep 13, 2008 6:40 pm
I’ve already put usepackage command in the preable;
now I changed the option with the one you gave to me but it still doesn’t work out…
Error message says to me:
Package xcolor Error: Undefined color ForestGreen…
Even if I put the right option class for ForestGreen color; I looked also to xcolor guide but it doesn’t seem to solve my problem at all…
I tried also to use xcolor command outside tabular but I got the same error…
-
localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
xcolor package and beamer
Postby localghost » Sat Sep 13, 2008 6:52 pm
The main fault is to load the xcolor package again because it is already loaded by the beamer class. This is expressed by an error message (which you should get, too).
! LaTeX Error: Option clash for package xcolor. See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help.
To avoid this, put the option svgnames into the option list for the document class. It will be passed to xcolor.
documentclass[svgnames,smaller]{beamer}
Delete the line which loads the package and it will work fine.
-
dejan85
- Posts: 8
- Joined: Sat Nov 08, 2008 3:14 pm
xcolor package and beamer
Postby dejan85 » Sat Nov 08, 2008 3:41 pm
I have the similar problem. I follow instruction from site
http://faculty.csuci.edu/jorge.garcia/tex/beamer.htm
to install beamer, a test beamer with their template.txt from site. I got the same error
"! LaTeX Error: Option clash for package xcolor..."
.
template.txt :
documentclass[t]{beamer} input mybeamersettings
First line I changed to «documentclass[svgnames,smaller]{beamer}» but I got the same error.
I download some presentation with first lines
documentclass[10pt]{beamer} mode<presentation> { usetheme{Warsaw} setbeamercovered{transparent} }
and the same error appears.
I can’t make pdflatex with any correct .tex fail.
Please, can you tell me what may be a problem. I need to fix this very soon for my thesis presentation.
-
Stefan Kottwitz
- Site Admin
- Posts: 9934
- Joined: Mon Mar 10, 2008 9:44 pm
xcolor package and beamer
Postby Stefan Kottwitz » Sat Nov 08, 2008 6:39 pm
Hi,
dejan85 wrote:First line I changed to «documentclass[svgnames,smaller]{beamer}» but I got the same error.
Further you have to remove the line
in your preamble or mybeamersettings.tex.
If this doesn’t help please post a small code example containing enough information.
Stefan
LaTeX.org admin
-
dejan85
- Posts: 8
- Joined: Sat Nov 08, 2008 3:14 pm
xcolor package and beamer
Postby dejan85 » Sat Nov 08, 2008 11:16 pm
I want to remove this line, but it doesn’t exist, neither in my tex file, nor in the mybeamersettings.tex. In mybeamersettings there are only two lines with usepackage:
usepackage[english]{babel} usepackage{listings,amsmath,multimedia}
I didn’t make the presentation, I’d downloaded the example from
http://faculty.csuci.edu/jorge.garcia/tex/beamer.htm
. It should be working. You can look at the example. There is no «usepackage[…]{xcolor}» line.
-
Stefan Kottwitz
- Site Admin
- Posts: 9934
- Joined: Mon Mar 10, 2008 9:44 pm
xcolor package and beamer
Postby Stefan Kottwitz » Sun Nov 09, 2008 12:13 am
The error message shows that the xcolor package was loaded more than once. Have a look at «Option clash for package» in the UK TeX FAQ for more information.
That example worked for me. For further investigation you could post your .log file as attachment here, perhaps we would find the cause there.
Stefan
LaTeX.org admin
-
dejan85
- Posts: 8
- Joined: Sat Nov 08, 2008 3:14 pm
xcolor package and beamer
Postby dejan85 » Sun Nov 09, 2008 1:31 pm
I look at my.log file and I find lines that contains xcolor
C:texmftexlatexxcolorxcolor.sty ... C:texmftexlatexpgfxxcolor.sty
After second line there is Option clash… Probably, latex load xcolor package more than once automatically, so I really don’t know how to solve problem. I upload my .log file.
- Attachments
-
- template.log
- my log file
- (9.52 KiB) Downloaded 429 times
Note! Before proceeding, try first trashing the .aux file and recompile. If this didn’t help, check whether your LaTeX distribution is compatible with the package. If your system should be compatible, then proceed to the questions.
Compilation errors
LaTeX Error: File ‘nnnn.sty’ not found.
Your LaTeX distribution does not have package ‘nnnn.sty’ installed. The aaltologo package uses and takes advantage of the following packages
- tikz,
- color,
- ifthen,
- lcg,
- newcent, and
- helvet.
In addition, the aaltologo package takes advantage of the babel package if it is included.
If ‘nnnn’ is any of these, download them from CTAN or update (or ask your system administrator to update) your LaTeX distribution. However, these packages should be included in the recent distributions, so the first thing to do if you don’t have these packages is to update your LaTeX distribution.
Package babel Error: You haven’t specified a language option.
You have included the babel package but haven’t specified the language to be used. Make sure that you have lines
usepackage[<language options>]{babel}
usepackage[<aaltologo options>]{aaltologo}
in your document preamble and with at least one language option given to the babel package.
Package babel Error: You haven’t loaded the option ‘nnnn’ yet.
You gave the babel package at least one language option, compiled your file, then changed the babel package option so that you have as the last option a language that you didn’t give before the compilation, compiled again, and got this error message, right? This is nothing harmful, you just messed up the document language processing the babel package performs. Compile your document once again, and you will not get this error message.
LaTeX Error: Unknown option ‘nnnn’ for package ‘aaltologo’.
You have a typo in the aaltologo package options. Check the typing of the options.
Package xcolor Error: Undefined color ‘nnnn’.
You have a typo in a color name.
Compilation warnings
Package aaltologo Warning: School name option ‘NNNN’ DEPRECATED.
You wanted to generate a logo for the School of Science and Technology, didn’t you? Remember that the School of Science and Engineering was split into four schools in the beginning of 2011, so use the option for your new school. These options are kept just for legacy reasons.
Package aaltologo Warning: Ignoring library location, check option ordering.
Either you haven’t given a library option (Kirjasto, Biblioteket, or Library) before the library location or you have given another school or institute name option between the library and the location options. Remember to type the library location option immediately after the library option.
Package lcg Warning: Using an already existing counter rand on input line NN.
Ignore. This is due to reinitialization of the random number generator. This warning, however, is handy for tracing the randomization.
Outcome troubleshooting
The school or institute name is not written in the language I want.
You wanted the logo text lines to be in Finnish or Swedish? You need to specify the language as the document language by giving the language option for the babel package. Or did you want the logo text lines to be in English? In that case remember that the last language option is set to the default language of the document. If you are using several languages within the document, you can change the document language in the running text with the command selectlanguage{<language>}.
The school or institute name is wrong.
Either you haven’t given the correct school/insitute option or you have given multiple school and institute name options. Check your package options or remove the options you don’t need.
There is not enough space around the logo
You need to specify the safety margins by yourself.
The color/mark of the logo is not the one I want.
If you use a random logo command, deal with it, it is a random logo. If you wanted a specific logo, check the command parameters.
The logo is broken.
Either you have specified logo parameters that are not valid or you have redefined the school and institute selection variables. Check the command parameters or stop messing with the variables.
The logo on the first page has black question mark although I randomize the logo parameters and the use the variables.
You haven’t randomized the parameters before the first logo is drawn. The initialized values of the logo parameters are used. Initialized counters are zero, the color variable is aaltoBlack, and the mark variable is ?. Just perform the external randomization before the first logo is drawn.
Logo color and mark variables are not those of the logo in the page
If you don’t use random logos, then the variables are at their initialized values (see the previous problem). If you use random logos, note that LaTeX lays out the document text first and after that the other parts. Therefore, if your random logo is in the header or footer, the parameters of the logo on that page are taken into use after the document text is laid out. If you want to use the logo parameters in the text, randomize the logo parameters in the document header/footer after the logo is drawn.
Bugs, coding efficiency, etc.
BugZ in Ur CoDE, n00bs!
Normal use of the package, i.e. you use the package and it’s commands as explained in this documentation, has been tested thoroughly and there shouldn’t be any bugs. However, if you encounter a bug in normal use, please contact the maintainers. If you have messed with the commands the package uses internally and that haven’t been documented here on purpose, it’s your own fault, n00b.
Your logo drawing paths/commands are inefficient, you could have shorter paths / more efficient commands.
Thank you for your comment. If you have more efficient realizations, please contact us and we will take a look at them.
I want a logo for my institute. Could you implement it into this package, please?
The logo hierarchy is controlled by Aalto University Marketing and Communications. Contact them if you want logos for your institute. If and only if they accept to give logos for your institute, they will contact the maintainers who will implement it into the package. Otherwise we won’t implement it.
Haseeb Mahmud
created an issue
2018-08-02
I am trying to add a TikZ generated plot in the document. I am having the following errors,
documentclass[11pt,a4paper]{article} usepackage{tikz} usepackage{pgfplots} usepackage{scalefnt} usetikzlibrary{arrows,decorations.pathmorphing,backgrounds,positioning,fit,petri} begin{document} pgfmathdeclarefunction{gauss}{2}{% pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}% } begin{figure} begin{center} {scalefont{0.7} begin{tikzpicture}[scale=1.8] begin{axis}[ no markers, domain=0:8, samples=100, axis lines*=left, every axis y label/.style={at=(current axis.above origin),anchor=south}, every axis x label/.style={at=(current axis.right of origin),anchor=west}, height=5cm, width=8cm, xtick=empty, ytick=empty, enlargelimits=false, clip=false, axis on top, grid = major ] addplot [fill=cyan!20, draw=none, domain=2.5:5.5] {gauss(4,1)} closedcycle; addplot [very thick,cyan!50!black] {gauss(4,1)}; end{axis} node at (3.2,-.3) {$Q_2$}; node at (2,-.3) {$Q_1$}; node at (4.4,-.3) {$Q_3$}; node at (0.0, 3.9) {$f(x)$}; node at (6, -0.3) {$x$}; draw [red][|-|] ((3.2,0) -- (3.2,3.4); draw [red][|-|] ((2,0) -- (2,1.1); draw [red][|-|] ((4.4,0) -- (4.4,1.1); end{tikzpicture} } end{center} end{figure} end{document}
Firstly, the packages. I have added these lines in classicthesis-config.tex
usepackage{tikz} usepackage{pgfplots} usepackage{scalefnt} usetikzlibrary{arrows,decorations.pathmorphing,backgrounds,positioning,fit,petri}
And these line in ClassicThesis.tex just after document tag.
pgfmathdeclarefunction{gauss}{2}{% pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}% }
After this, I have added the plot in Chapter 1,
begin{figure} begin{center} {scalefont{0.7} begin{tikzpicture}[scale=1.8] begin{axis}[ no markers, domain=0:8, samples=100, axis lines*=left, every axis y label/.style={at=(current axis.above origin),anchor=south}, every axis x label/.style={at=(current axis.right of origin),anchor=west}, height=5cm, width=8cm, xtick=empty, ytick=empty, enlargelimits=false, clip=false, axis on top, grid = major ] addplot [fill=cyan!20, draw=none, domain=2.5:5.5] {gauss(4,1)} closedcycle; addplot [very thick,cyan!50!black] {gauss(4,1)}; end{axis} node at (3.2,-.3) {$Q_2$}; node at (2,-.3) {$Q_1$}; node at (4.4,-.3) {$Q_3$}; node at (0.0, 3.9) {$f(x)$}; node at (6, -0.3) {$x$}; draw [red][|-|] ((3.2,0) -- (3.2,3.4); draw [red][|-|] ((2,0) -- (2,1.1); draw [red][|-|] ((4.4,0) -- (4.4,1.1); end{tikzpicture} } end{center} end{figure}
I am facing the following error messages,
! Package xcolor Error: Undefined color `CTtitle'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.92 part{Some Kind of Manual} label{pt:manual} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.92 part{Some Kind of Manual} label{pt:manual} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [1 ] [2] openout2 = `Chapters/Chapter01.aux'. (./Chapters/Chapter01.tex Chapter 1. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.14 marginpar{myTitle myVersion} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.14 marginpar{myTitle myVersion} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. LaTeX Font Info: Font shape `T1/fvm/m/n' will be (Font) scaled to size 7.65005pt on input line 20. ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.29 mLyXfootnote{url{http://www.lyx.org}} thanks to Nicholas Mariette Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.50 url{http://postcards.miede.de} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.53 ...at's what typography is all about, right?} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.53 ...at's what typography is all about, right?} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [3 ] ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.72 ...ctan.org/macros/latex/contrib/booktabs/}.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.94 ...nto the future of texttt{classicthesis}.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. LaTeX Font Info: Font shape `T1/fvm/m/it' in size <9> not available (Font) Font shape `T1/fvm/m/sl' tried instead on input line 94. LaTeX Font Info: Font shape `T1/fvm/m/sl' will be (Font) scaled to size 7.65005pt on input line 94. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.94 ...nto the future of texttt{classicthesis}.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.114 bodydots} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.114 bodydots} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [4] ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.144 ...ation here. Refer to autoref{sec:custom} for more Try typing <return> to proceed. If that doesn't work, type X <return> to quit. Package microtype Info: Character `029' is missing (microtype) in font `T1/pplj/m/sc/10'. (microtype) Ignoring protrusion settings for this character. [5] ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.158 comments of her own while reading.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.158 comments of her own while reading.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. LaTeX Font Info: Font shape `T1/pplj/bx/n' in size <10.95> not available (Font) Font shape `T1/pplj/b/n' tried instead on input line 162. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.200 ...ons are enabled via texttt{option=true}} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.200 ...ons are enabled via texttt{option=true}} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [6 ] Overfull hbox (6.3659pt too wide) in paragraph at lines 228--229 [][]T1/fvm/m/n/10.95 renewcommand*{ct@altfont}{sffamily}[]T1/pplj/m/n/10.9 5 (-20) . Col-or-ing is also [] Overfull hbox (0.29587pt too wide) in paragraph at lines 232--233 T1/pplj/m/n/10.95 (-20) ter num-ber. De-fault is: [][]T1/fvm/m/n/10.95 defin ecolor{CTsemi}{gray}{0.55} [] ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.264 } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. Overfull hbox (2.07549pt too wide) in paragraph at lines 264--264 T1/fvm/m/sl/9 thesis-config.tex [] ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.264 } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. Overfull hbox (2.07549pt too wide) in paragraph at lines 264--264 T1/fvm/m/sl/9 thesis-config.tex [] LaTeX Font Info: Font shape `T1/fvm/m/n' will be (Font) scaled to size 8.50006pt on input line 266. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.267 % ********************************************* Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.267 % ********************************************* Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.267 % ********************************************* Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.267 ...***************************************** Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad- hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-h oc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 % 2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.268 ...2. Personal data and user ad-hoc commands Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.269 % ********************************************* Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.269 % ********************************************* Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.269 % ********************************************* Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.269 ...***************************************** Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.270 newcommand{ myTitle}{A Classic Thesis Style} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.271 newcommand{ mySubtitle}{An Homage to...} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [7] ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.276 (see~autoref{sec:options} ) in a line that looks like this: Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.279 PassOptionsToPackage{ Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.310 ...ps://bitbucket.org/amiede/classicthesis/} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [8] ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.363 ...ket.org/amiede/classicthesis/issues/123/} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. LaTeX Font Info: Calculating math sizes for size <7.66496> on input line 388 . Overfull hbox (3.96588pt too wide) in paragraph at lines 396--398 [] [] ) [9] [10] ! Package xcolor Error: Undefined color `CTtitle'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.101 part{The Showcase} label{pt:showcase} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.101 part{The Showcase} label{pt:showcase} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [11 ] [12] openout2 = `Chapters/Chapter02.aux'. (./Chapters/Chapter02.tex Chapter 2. Package acronym Info: Label `acro:UML' newly defined as it shall be overridden although it is yet undefined on input line 35. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.35 Acronym testing: ac{UML} -- acs{UML} -- acf{UML} -- acp{UML} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.35 Acronym testing: ac{UML} -- acs{UML} -- acf{UML} -- acp{UML} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.35 ...esting: ac{UML} -- acs{UML} -- acf{UML} -- acp{UML} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.35 ...ML} -- acs{UML} -- acf{UML} -- acp{UML} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.40 It is not a real language.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.40 It is not a real language.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.47 Errem omnium ea per, pro ac{UML} con populo ornatus cu, ex qui Try typing <return> to proceed. If that doesn't work, type X <return> to quit. Package acronym Info: Label `acro:API' newly defined as it shall be overridden although it is yet undefined on input line 62. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.62 ea cum ac{API} primis intellegat. Hinc cotidieque reprehendunt eu Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [13 ] ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.124 ...te westeuropee web, autoref{tab:example} nos clave Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [14] ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.169 le, publicate autoref{fig:example} methodicamente e qui. Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.172 studio. autoref{fig:example-b} Instruite preparation le duo, asia Try typing <return> to proceed. If that doesn't work, type X <return> to quit. <gfx/example_1.jpg, id=408, 240.9pt x 180.675pt> File: gfx/example_1.jpg Graphic file (type jpg) <use gfx/example_1.jpg> Package pdftex.def Info: gfx/example_1.jpg used on input line 179. (pdftex.def) Requested size: 151.19897pt x 113.40128pt. <gfx/example_2.jpg, id=409, 240.9pt x 180.675pt> File: gfx/example_2.jpg Graphic file (type jpg) <use gfx/example_2.jpg> Package pdftex.def Info: gfx/example_2.jpg used on input line 182. (pdftex.def) Requested size: 151.19897pt x 113.40128pt. <gfx/example_3.jpg, id=410, 240.9pt x 180.675pt> File: gfx/example_3.jpg Graphic file (type jpg) <use gfx/example_3.jpg> Package pdftex.def Info: gfx/example_3.jpg used on input line 184. (pdftex.def) Requested size: 151.19897pt x 113.40128pt. <gfx/example_4.jpg, id=411, 240.9pt x 180.675pt> File: gfx/example_4.jpg Graphic file (type jpg) <use gfx/example_4.jpg> Package pdftex.def Info: gfx/example_4.jpg used on input line 186. (pdftex.def) Requested size: 151.19897pt x 113.40128pt. Package acronym Info: Label `acro:DRY' newly defined as it shall be overridden although it is yet undefined on input line 188. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.188 latente. ac{DRY}} label{fig:example} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.188 latente. ac{DRY}} label{fig:example} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ) [15 <./gfx/example_1.jpg> <./gfx/example_2.jpg> <./gfx/example_3.jpg> <./gfx/ example_4.jpg>] openout2 = `Chapters/Chapter03.aux'. (./Chapters/Chapter03.tex Chapter 3. [16 ] ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.13 ...http://home.vrweb.de/~was/mathfonts.html}} . Continuous processes Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.24 ... Consider the texttt{pdfspacing} option.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.24 ... Consider the texttt{pdfspacing} option.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [17]) [18] ! Package xcolor Error: Undefined color `CTtitle'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.112 part{Appendix} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.112 part{Appendix} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. [19 ] [20] openout2 = `Chapters/Chapter0A.aux'. (./Chapters/Chapter0A.tex Appendix A. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.12 graffito{More dummy text.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Black'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.12 graffito{More dummy text.} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.23 Test: autoref{tab:moreexample} (This reference should have a Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTlink'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.60 ...ascal listing below: autoref{lst:useless} . Try typing <return> to proceed. If that doesn't work, type X <return> to quit. (/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty File: lstlang1.sty 2015/06/04 1.6 listings language file ) ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.63 for i:=maxint downto 0 do Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.63 for i:=maxint downto 0 do Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.63 for i:=maxint downto 0 do Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.63 for i:=maxint downto 0 do Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.64 begin Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.65 { do nothing } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.65 { do nothing } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.65 { do nothing } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.65 { do nothing } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.65 { do nothing } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.65 { do nothing } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `Green'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.65 { do nothing } Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `RoyalBlue'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.66 end; Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ) [21 ] [22 ] openout2 = `FrontBackmatter/Bibliography.aux'. (./FrontBackmatter/Bibliography.tex [23 ] Overfull hbox (0.28452pt too wide) in paragraph at lines 15--15 []T1/pplj/m/n/10.95 (-20) Jordan B. Pe-ter-son. T1/pplj/m/it/10.95 12 Rules f or Life: An An-ti-dote to ChaosT1/pplj/m/n/10.95 (-20) . Toronto, [] ) [24] openout2 = `FrontBackmatter/Declaration.aux'. (./FrontBackmatter/Declaration.tex) [25 ] [26 ] openout2 = `FrontBackmatter/Colophon.aux'. (./FrontBackmatter/Colophon.tex ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.14 ...tps://bitbucket.org/amiede/classicthesis/} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ! Package xcolor Error: Undefined color `CTurl'. See the xcolor package documentation for explanation. Type H <return> for immediate help. ... l.18 url{http://postcards.miede.de/} Try typing <return> to proceed. If that doesn't work, type X <return> to quit. ) [27 ] Package atveryend Info: Empty hook `BeforeClearDocument' on input line 123. Package atveryend Info: Empty hook `AfterLastShipout' on input line 123. (./ClassicThesis.aux (./FrontBackmatter/DirtyTitlepage.aux) (./FrontBackmatter/Titlepage.aux) (./FrontBackmatter/Titleback.aux) (./FrontBackmatter/Dedication.aux) (./FrontBackmatter/Abstract.aux) (./FrontBackmatter/Publications.aux) (./FrontBackmatter/Acknowledgments.aux) (./FrontBackmatter/Contents.aux) (./Chapters/Chapter01.aux) (./Chapters/Chapter02.aux) (./Chapters/Chapter03.aux) (./Chapters/Chapter0A.aux ) (./FrontBackmatter/Bibliography.aux) (./FrontBackmatter/Declaration.aux) (./FrontBackmatter/Colophon.aux)) Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 123. *File List* silence.sty 2012/07/02 v1.5b Selective filtering of warnings and error mess ages scrreprt.cls 2017/09/07 v3.24 KOMA-Script document class (report) scrkbase.sty 2017/09/07 v3.24 KOMA-Script package (KOMA-Script-dependent bas ics and keyval usage) scrbase.sty 2017/09/07 v3.24 KOMA-Script package (KOMA-Script-independent b asics and keyval usage) keyval.sty 2014/10/28 v1.15 key=value parser (DPC) scrlfile.sty 2017/09/07 v3.24 KOMA-Script package (loading files) tocbasic.sty 2017/09/07 v3.24 KOMA-Script package (handling toc-files) scrsize11pt.clo 2017/09/07 v3.24 KOMA-Script font size class option (11pt) typearea.sty 2017/09/07 v3.24 KOMA-Script package (type area) classicthesis-config.tex inputenc.sty 2015/03/17 v1.2c Input encoding file utf8.def 2017/01/28 v1.1t UTF-8 support for inputenc t1enc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc ot1enc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc omsenc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc fontenc.sty t1enc.def 2017/04/05 v2.0i Standard LaTeX file babel.sty 2018/02/14 3.18 The Babel package ngerman.ldf 2016/11/02 v2.9 German support for babel (new orthography) american.ldf 2017/06/06 v3.3r English support from the babel system csquotes.sty 2018/02/11 v5.2c context-sensitive quotations (JAW) etoolbox.sty 2018/02/11 v2.5e e-TeX tools for LaTeX (JAW) csquotes.def 2018/02/11 v5.2c csquotes generic definitions (JAW) csquotes.cfg biblatex.sty 2017/12/19 v3.10 programmable bibliographies (PK/JW/AB) pdftexcmds.sty 2018/01/21 v0.26 Utility functions of pdfTeX for LuaTeX (HO) infwarerr.sty 2016/05/16 v1.4 Providing info/warning/error messages (HO) ifluatex.sty 2016/05/16 v1.4 Provides the ifluatex switch (HO) ltxcmds.sty 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) ifpdf.sty 2017/03/15 v3.2 Provides the ifpdf switch kvoptions.sty 2016/05/16 v3.12 Key value format for package options (HO) kvsetkeys.sty 2016/05/16 v1.17 Key value parser (HO) etexcmds.sty 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) logreq.sty 2010/08/04 v1.0 xml request logger logreq.def 2010/08/04 v1.0 logreq spec v1.0 ifthen.sty 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) url.sty 2013/09/16 ver 3.4 Verb mode for urls, etc. xstring.sty 2013/10/13 v1.7c String manipulations (C Tellechea) blx-dm.def numeric-comp.dbx biblatex-dm.cfg blx-compat.def 2017/12/19 v3.10 biblatex compatibility (PK/JW/AB) blx-bibtex.def 2017/12/19 v3.10 biblatex compatibility (PK/JW/AB) biblatex.def 2017/12/19 v3.10 biblatex compatibility (PK/JW/AB) blx-natbib.def 2017/12/19 v3.10 biblatex compatibility (PK/JW/AB) standard.bbx 2017/12/19 v3.10 biblatex bibliography style (PK/JW/AB) numeric.bbx 2017/12/19 v3.10 biblatex bibliography style (PK/JW/AB) numeric-comp.bbx 2017/12/19 v3.10 biblatex bibliography style (PK/JW/AB) numeric-comp.cbx 2017/12/19 v3.10 biblatex citation style (PK/JW/AB) biblatex.cfg amsmath.sty 2017/09/02 v2.17a AMS math features amstext.sty 2000/06/29 v2.01 AMS text amsgen.sty 1999/11/30 v2.0 generic functions amsbsy.sty 1999/11/29 v1.2d Bold Symbols amsopn.sty 2016/03/08 v2.02 operator names graphicx.sty 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) graphics.sty 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) trig.sty 2016/01/03 v1.10 sin cos tan (DPC) graphics.cfg 2016/06/04 v1.11 sample graphics configuration pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex scrhack.sty 2017/09/07 v3.24 KOMA-Script package xpatch.sty 2012/10/02 v0.3 Extending etoolbox patching commands expl3.sty 2018/02/21 L3 programming layer (loader) expl3-code.tex 2018/02/21 L3 programming layer l3pdfmode.def 2017/03/18 v L3 Experimental driver: PDF mode xparse.sty 2018/02/21 L3 Experimental document command parser xspace.sty 2014/10/28 v1.13 Space after command names (DPC,MH) acronym.sty 2015/03/21 v1.41 Support for acronyms (Tobias Oetiker) suffix.sty 2006/07/15 1.5a Variant command support relsize.sty 2013/03/29 ver 4.1 tabularx.sty 2016/02/03 v2.11 `tabularx' package (DPC) array.sty 2016/10/06 v2.4d Tabular extension package (FMi) subfig.sty 2005/06/28 ver: 1.3 subfig package caption.sty 2016/02/21 v3.3-144 Customizing captions (AR) caption3.sty 2016/05/22 v1.7-166 caption3 kernel (AR) tikz.sty 2015/08/07 v3.0.1a (rcs-revision 1.151) pgf.sty 2015/08/07 v3.0.1a (rcs-revision 1.15) pgfrcs.sty 2015/08/07 v3.0.1a (rcs-revision 1.31) everyshi.sty 2001/05/15 v3.00 EveryShipout Package (MS) pgfrcs.code.tex pgfcore.sty 2010/04/11 v3.0.1a (rcs-revision 1.7) pgfsys.sty 2014/07/09 v3.0.1a (rcs-revision 1.48) pgfsys.code.tex pgfsyssoftpath.code.tex 2013/09/09 (rcs-revision 1.9) pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4) xcolor.sty 2016/05/11 v2.12 LaTeX color extensions (UK) color.cfg 2016/01/02 v1.6 sample color configuration pgfcore.code.tex pgfcomp-version-0-65.sty 2007/07/03 v3.0.1a (rcs-revision 1.7) pgfcomp-version-1-18.sty 2007/07/23 v3.0.1a (rcs-revision 1.1) pgffor.sty 2013/12/13 v3.0.1a (rcs-revision 1.25) pgfkeys.sty pgfkeys.code.tex pgfmath.sty pgfmath.code.tex pgffor.code.tex tikz.code.tex pgfplots.sty 2017/06/05 v1.15 Data Visualization (1.15) scalefnt.sty listings.sty 2015/06/04 1.6 (Carsten Heinz) lstmisc.sty 2015/06/04 1.6 (Carsten Heinz) listings.cfg 2015/06/04 1.6 listings configuration listings.hak 2017/09/07 v3.24 KOMA-Script package (hacking package listings) lstlang1.sty 2015/06/04 1.6 listings language file lstlang2.sty 2015/06/04 1.6 listings language file lstlang3.sty 2015/06/04 1.6 listings language file lstlang1.sty 2015/06/04 1.6 listings language file lstlang2.sty 2015/06/04 1.6 listings language file lstlang3.sty 2015/06/04 1.6 listings language file lstlang1.sty 2015/06/04 1.6 listings language file lstlang2.sty 2015/06/04 1.6 listings language file lstlang3.sty 2015/06/04 1.6 listings language file lstmisc.sty 2015/06/04 1.6 (Carsten Heinz) classicthesis.sty 2018/06/03 v4.6 Typographic style for a classic-looking th esis ifxetex.sty 2010/09/12 v0.6 Provides ifxetex conditional mathpazo.sty 2005/04/12 PSNFSS-v9.2a Palatino w/ Pazo Math (D.Puga, WaS) beramono.sty 2004/01/31 (WaS) ueur.fd 2013/01/14 v3.01 Euler Roman microtype.sty 2018/01/14 v2.7a Micro-typographical refinements (RS) microtype-pdftex.def 2018/01/14 v2.7a Definitions specific to pdftex (RS) microtype.cfg 2018/01/14 v2.7a microtype main configuration file (RS) mparhack.sty 2005/04/17 v1.4 (T. Sgouros and S. Ulrich) booktabs.sty 2016/04/27 v1.618033 publication quality tables textcase.sty 2004/10/07 v0.07 Text only upper/lower case changing (DPC) scrlayer-scrpage.sty 2017/09/07 v3.24 KOMA-Script package (end user interfac e for scrlayer) scrlayer.sty 2017/09/07 v3.24 KOMA-Script package (defining layers and page styles) titlesec.sty 2016/03/21 v2.10.2 Sectioning titles tocloft.sty 2017/08/31 v2.3i parameterised ToC, etc., typesetting scrtime.sty 2017/09/07 v3.24 KOMA-Script package (time of LaTeX run) prelim2e.sty 2009/05/29 v1.3 prelim2e Package (MS) hyperref.sty 2018/02/06 v6.86b Hypertext links for LaTeX hobsub-hyperref.sty 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO) hobsub-generic.sty 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO) hobsub.sty 2016/05/16 v1.14 Construct package bundles (HO) ifvtex.sty 2016/05/16 v1.6 Detect VTeX and its facilities (HO) intcalc.sty 2016/05/16 v1.2 Expandable calculations with integers (HO) kvdefinekeys.sty 2016/05/16 v1.4 Define keys (HO) pdfescape.sty 2016/05/16 v1.14 Implements pdfTeX's escape features (HO) bigintcalc.sty 2016/05/16 v1.4 Expandable calculations on big integers (HO) bitset.sty 2016/05/16 v1.2 Handle bit-vector datatype (HO) uniquecounter.sty 2016/05/16 v1.3 Provide unlimited unique counter (HO) letltxmacro.sty 2016/05/16 v1.5 Let assignment for LaTeX macros (HO) hopatch.sty 2016/05/16 v1.3 Wrapper for package hooks (HO) xcolor-patch.sty 2016/05/16 xcolor patch atveryend.sty 2016/05/16 v1.9 Hooks at the very end of document (HO) atbegshi.sty 2016/06/09 v1.18 At begin shipout hook (HO) refcount.sty 2016/05/16 v3.5 Data extraction from label references (HO) hycolor.sty 2016/05/16 v1.8 Color options for hyperref/bookmark (HO) auxhook.sty 2016/05/16 v1.4 Hooks for auxiliary files (HO) pd1enc.def 2018/02/06 v6.86b Hyperref: PDFDocEncoding definition (HO) hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive hpdftex.def 2018/02/06 v6.86b Hyperref driver for pdfTeX rerunfilecheck.sty 2016/05/16 v1.8 Rerun checks for auxiliary files (HO) english.lbx 2017/12/19 v3.10 biblatex localization (PK/JW/AB) american.lbx 2017/12/19 v3.10 biblatex localization (PK/JW/AB) german.lbx 2017/12/19 v3.10 biblatex localization (PK/JW/AB) ngerman.lbx 2017/12/19 v3.10 biblatex localization (PK/JW/AB) t1pplj.fd 2004/09/06 font definitions for T1/pplj. ClassicThesis.bbl supp-pdf.mkii epstopdf-base.sty 2016/05/15 v2.6 Base part for package epstopdf grfext.sty 2016/05/16 v1.2 Manage graphics extensions (HO) epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live mt-ppl.cfg 2005/11/16 v1.6 microtype config. file: Palatino (RS) nameref.sty 2016/05/21 v2.44 Cross-referencing by name of section gettitlestring.sty 2016/05/16 v1.5 Cleanup title references (HO) ClassicThesis.out ClassicThesis.out FrontBackmatter/DirtyTitlepage.tex ot1pplx.fd 2004/09/06 font definitions for OT1/pplx. omlzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OML/zplm. omszplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMS/zplm. omxzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMX/zplm. ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm. FrontBackmatter/Titlepage.tex gfx/TFZsuperellipse_bw.pdf FrontBackmatter/Titleback.tex FrontBackmatter/Dedication.tex FrontBackmatter/Abstract.tex t1fvm.fd 2004/09/07 scalable font definitions for T1/fvm. FrontBackmatter/Publications.tex FrontBackmatter/Acknowledgments.tex FrontBackmatter/Contents.tex Chapters/Chapter01.tex Chapters/Chapter02.tex gfx/example_1.jpg gfx/example_2.jpg gfx/example_3.jpg gfx/example_4.jpg Chapters/Chapter03.tex Chapters/Chapter0A.tex lstlang1.sty 2015/06/04 1.6 listings language file FrontBackmatter/Bibliography.tex FrontBackmatter/Declaration.tex FrontBackmatter/Colophon.tex *********** Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 123. Package rerunfilecheck Warning: File `ClassicThesis.out' has changed. (rerunfilecheck) Rerun to get outlines right (rerunfilecheck) or use package `bookmark'. Package rerunfilecheck Info: Checksums for `ClassicThesis.out': (rerunfilecheck) Before: C3340189D71D093F6A46F5ED3E706D32;2205 (rerunfilecheck) After: AFD6A9E072C2AD9035BD188160D2E7BA;2205. LaTeX Font Warning: Some font shapes were not available, defaults substituted. LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. Package biblatex Warning: Please (re)run BibTeX on the file(s): (biblatex) ClassicThesis1-blx (biblatex) and rerun LaTeX afterwards. Package logreq Info: Writing requests to 'ClassicThesis.run.xml'. openout1 = `ClassicThesis.run.xml'. ) Here is how much of TeX's memory you used: 55408 strings out of 492982 1210784 string characters out of 6134896 1738527 words of memory out of 5000000 57443 multiletter control sequences out of 15000+600000 653839 words of font info for 462 fonts, out of 8000000 for 9000 1145 hyphenation exceptions out of 8191 70i,23n,102p,10516b,2269s stack positions out of 5000i,500n,10000p,200000b,80000s pdfTeX warning (dest): name{table.caption.12} has been referenced but does no t exist, replaced by a fixed one pdfTeX warning (dest): name{table.caption.9} has been referenced but does not e xist, replaced by a fixed one pdfTeX warning (dest): name{figure.caption.10} has been referenced but does not exist, replaced by a fixed one pdfTeX warning (dest): name{section*.14} has been referenced but does not exist , replaced by a fixed one {/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texlive/ texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb></usr/share/texlive/texmf- dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texlive/texmf-dist/f onts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/texlive/texmf-dist/fonts/ty pe1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/fonts/type1/pu blic/amsfonts/euler/eurb10.pfb></usr/share/texlive/texmf-dist/fonts/type1/publi c/mathpazo/fplmri.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fpl rc8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/fpl/fplrij8a.pfb></u sr/share/texlive/texmf-dist/fonts/type1/public/bera/fvmr8a.pfb></usr/share/texl ive/texmf-dist/fonts/type1/public/bera/fvmro8a.pfb></usr/share/texlive/texmf-di st/fonts/type1/urw/palatino/uplb8a.pfb></usr/share/texlive/texmf-dist/fonts/typ e1/urw/palatino/uplr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/palat ino/uplri8a.pfb> Output written on ClassicThesis.pdf (41 pages, 285009 bytes). PDF statistics: 583 PDF objects out of 1000 (max. 8388607) 514 compressed objects within 6 object streams 161 named destinations out of 1000 (max. 500000) 99150 words of extra memory for PDF output out of 106986 (max. 10000000)
I have a texlive-full installed in my Ubuntu system. The version is as follows,
$ pdflatex --version pdfTeX 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) kpathsea version 6.2.3 Copyright 2017 Han The Thanh (pdfTeX) et al. There is NO warranty. Redistribution of this software is covered by the terms of both the pdfTeX copyright and the Lesser GNU General Public License. For more information about these matters, see the file named COPYING and the pdfTeX source. Primary author of pdfTeX: Han The Thanh (pdfTeX) et al. Compiled with libpng 1.6.34; using libpng 1.6.34 Compiled with zlib 1.2.11; using zlib 1.2.11 Compiled with poppler version 0.62.0
-
CodeThatWorks.tex