Fonts & Character Setstextgreek | Package File not found

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
rollinator
Posts: 5
Joined: Wed Sep 19, 2012 11:28 am

textgreek | Package File not found

Post by rollinator »

Hi,

I have a problem using the textgreek package! It always tells me that the package file is not found.

But where is this file located (using Xubuntu 12.04 OS and TeXmaker)? These are the lines where the error occurs.

Code: Select all

\usepackage{pdfpages, textcomp, placeins, amsmath, scrpage2, ellipsis, gensymb, microtype, setspace, textgreek, icomma} %
\usepackage[left=3cm,right=3cm,top=3cm,bottom=3cm, bindingoffset=5mm,includeheadfoot]{geometry}
Thx for your help

rolli
Last edited by localghost on Wed Sep 19, 2012 11:58 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

textgreek | Package File not found

Post by cgnieder »

Hi and welcome to the LaTeX community!

Try

Code: Select all

kpsewhich textgreek.sty
or

Code: Select all

kpsewhich --all textgreek.sty
This should tell you if the package is somewhere where TeX can find it. If this returns nothing you might want to install it.

Regards
site moderator & package author
rollinator
Posts: 5
Joined: Wed Sep 19, 2012 11:28 am

Re: textgreek | Package File not found

Post by rollinator »

The package indeed doesn't seem to be installed yet.
Although you gave me a link in order to help me installing it. I couldn't manage it. Arrrgh so how to install textgreek.sty on Ubuntu -----

something like sudo apt-get install textgreek...... or so?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

textgreek | Package File not found

Post by Stefan Kottwitz »

Welcome to the board!

This should help:

Code: Select all

sudo apt-get install texlive-latex-extra
It's for example listed in the Debian package page. Debian packages often bundle a lot of TeX packages, so you often cannot install a single LaTeX package via the Debian package management.

Stefan
LaTeX.org admin
rollinator
Posts: 5
Joined: Wed Sep 19, 2012 11:28 am

Re: textgreek | Package File not found

Post by rollinator »

this package has already been installed!!!
And it still cannot find the textgreek.sty ???
what could be wrong!!?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Re: textgreek | Package File not found

Post by Stefan Kottwitz »

Perhaps you have two TeX versions installed? For example, if you installed texlive from the Ubuntu repositories, but additionally TeX Live from DVD or over the internet from the original source (tug.org), the latter would not find packages of the other installation.

Perhaps post a generated .log file here, as attachment.

Stefan
LaTeX.org admin
rollinator
Posts: 5
Joined: Wed Sep 19, 2012 11:28 am

Re: textgreek | Package File not found

Post by rollinator »

I attached the log file the thing with the missing textgreek.sty can be found in line 438!

It may help in order to help me solving the problem!

grz

rolli
Attachments
masterthesis.log
(19.16 KiB) Downloaded 425 times
rollinator
Posts: 5
Joined: Wed Sep 19, 2012 11:28 am

textgreek | Package File not found

Post by rollinator »

furthermore now I realized there is another odd thing:

it tells me "Environment subfigure undefined" ??

Code: Select all

\begin{titlepage}
\newgeometry{left=1.5cm,right=1.5cm,top=3cm,bottom=2cm, bindingoffset=5mm}
	\thispagestyle{empty}
	\begin{figure}%[!ht]
		%\flushright
		%\vspace*{-3cm}
		\begin{subfigure}[t]{0.49\textwidth}
			\flushleft
			\includegraphics[scale=0.5]{./gfx/fhw-logo}
		\end{subfigure}
		\hfill
		\begin{subfigure}[t]{0.49\textwidth}
			\flushright
			\includegraphics[scale=0.75]{../gfx/haw-logo.jpg}
		\end{subfigure}
	\end{figure}
	\begin{center}
Last edited by cgnieder on Thu Sep 20, 2012 6:09 pm, edited 1 time in total.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

textgreek | Package File not found

Post by cgnieder »

You should probably solve the installation issue first. Have you found where the textgreek package is installed on your system?

Code: Select all

sudo find / -name textgreek.sty
Your log file shows that your compiler searches in

Code: Select all

/usr/share/texmf-texlive/
If it is installed elsewhere you probably have two installations as Stefan suspected.

Regards
site moderator & package author
Post Reply