Search found 21 matches

by koleygr
Wed Apr 13, 2016 10:33 pm
Forum: General
Topic: Fontconfig error: Cannot load default config file
Replies: 4
Views: 6879

Re: Can not uninstall texlive 2015

Thank you for the reply

I have already metion the problem.

The problem after reinstall is:
(c:/texlive/2015/texmf-dist/tex/latex/euenc/eu1lmr.fd)Fontconfig error: Cannot load default config file
C:/texlive/2015/texmf-var/fonts/cache does not exist.
Kpathsea is not working.
by koleygr
Wed Apr 13, 2016 7:09 pm
Forum: General
Topic: Fontconfig error: Cannot load default config file
Replies: 4
Views: 6879

Fontconfig error: Cannot load default config file

Hi,

I installed texlive 2015 on windows 7 and I tried to uninstall it from E:
and install it on C: (SSD).

When I first try to uninstall it, it said something about error in uninstall
and then after many tries it shows a terminal for a moment and does not uninstall.

I have to make a project in ...
by koleygr
Mon Feb 15, 2016 2:56 pm
Forum: Graphics, Figures & Tables
Topic: tikz does not write the numbers inside a filled circle
Replies: 1
Views: 2179

tikz does not write the numbers inside a filled circle

I fixed that using:
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}

and


\def\firstcircle{(0:1cm) circle (2.5cm)}
\def\secondcircle{(0:4.cm) circle (2.cm)}
\begin{tikzpicture}
\begin{scope}[ fill opacity=0.5]
\fill[yellow] \firstcircle;
\fill[blue!80] \secondcircle ...
by koleygr
Mon Feb 15, 2016 11:36 am
Forum: Graphics, Figures & Tables
Topic: tikz does not write the numbers inside a filled circle
Replies: 1
Views: 2179

tikz does not write the numbers inside a filled circle

Hi,

I am trying to make a figure and I need two circles with colors and numbers inside.

I am trying the following code
\begin{tikzpicture}
\draw (0,0) circle (2.5cm);
\draw[fill=blue!30] (3,0) circle (2cm);
\draw [clip](0,0) circle (2.5cm);
\fill[yellow] (0,0) circle (2.5cm);
\fill[yellow!50 ...
by koleygr
Mon Feb 15, 2016 6:42 am
Forum: General
Topic: Separate references for each chapter in specific template
Replies: 4
Views: 4375

Separate references for each chapter in specific template

Hi Stefan,

I have the lines:


\phantom{\cite{cite1}\cite{cite2}...\cite{cite69}}

\bibliographystyle{plain}
\bibliography{ref-Chapter1}

in the chapter1 file

and the line:
\usepackage[sectionbib]{chapterbib}
in the main file

I run once the latex or pdflatex command for the main file
so that ...
by koleygr
Mon Feb 15, 2016 2:40 am
Forum: General
Topic: Separate references for each chapter in specific template
Replies: 4
Views: 4375

Re: Seperate references for each chapter in specific templat

I finally added the citations in a \phantom command and it works.

Thanks
by koleygr
Mon Feb 15, 2016 1:57 am
Forum: General
Topic: Separate references for each chapter in specific template
Replies: 4
Views: 4375

Separate references for each chapter in specific template

Hi,

I using the template I found here for a thesis:
http://www.latextemplates.com/template/masters-doctoral-thesis

I am trying to have different references for every chapter without any \cite
command in the text.

Please help me.

I tried with the \usepackage[sectionbib]{chapterbib} command and ...
by koleygr
Thu Aug 06, 2015 1:38 pm
Forum: Graphics, Figures & Tables
Topic: Printing series using tikz
Replies: 3
Views: 4302

Re: Printing series using tikz

Thank you very much Stefan K.
It worked for both of my problems... for integers too
by koleygr
Thu Aug 06, 2015 11:03 am
Forum: Graphics, Figures & Tables
Topic: Printing series using tikz
Replies: 3
Views: 4302

Printing series using tikz

I am trying to plot a math series such as:
$N_{t+1}=\frac{61}{60}N_t-5$ with $N_0=120$
and I want N_t>0
I suppose that I need a code like:

\begin{figure}[H]
\centering
\begin{tikzpicture}[scale=0.025]
\draw[->] (0,0)--(320,0);
\node at (330,-17) {$t$};
\draw[->] (0,0)--(0,250);
\node at ...
by koleygr
Tue Dec 16, 2014 7:48 pm
Forum: Math & Science
Topic: Paradigm of LaTeX usage on Physics Notes
Replies: 2
Views: 3364

Paradigm of LaTeX usage on Physics Notes

Hi, thanks for sharing your physics knowledge.
I think knowledge should be free and available for everybody.
Thank you... this is excactly my opinion too... My job is a physicist,
and i should like to sell knowledge but i prefer to share it.

Concerning your LaTeX-code: Judging from your code, I ...