Fonts & Character SetsProblem with bibliography-fonts

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
roula
Posts: 1
Joined: Fri Sep 14, 2012 12:36 am

Problem with bibliography-fonts

Post by roula »

Hello everybody!

I 've just install Ubuntu and I am using Kile for writing my PhD thesis. I am using both English and Greek and since I start using kile I cannot compile my bibliography. I am receiving the following error messages:

Code: Select all

! LaTeX Error: Command \textEta unavailable in encoding T1. 
! LaTeX Error: Command \textkappa unavailable in encoding T1.
and several others similar to the ones above...

My preamble is the following:

Code: Select all

\documentclass[a4paper,12pt]{report}
\usepackage[english, greek]{babel} %This is to be able to write Greek
\usepackage[utf8x]{inputenx} %This is to be able to write Greek
\usepackage[LGR,T1]{fontenc} %This is to be able to write Greek
\usepackage{booktabs}
\newcommand{\gr}{\selectlanguage{greek}} %This is a custom command to switch easily to Greek
\newcommand{\en}{\selectlanguage{english}} %This is a custom command to switch easily to English
\usepackage{kerkis} %This is a font for Greek
\usepackage{harvard} %This is the author/date bibliography package
\usepackage{graphicx} %This package allows you to include graphs
\usepackage{lscape} %This package allows you to include landscape pages
\usepackage{setspace} %This packages allows you change the line spacing
\usepackage{threeparttable} %This package allows you to draw tables with notes at the bottom
\usepackage{longtable} %This package allows you to draw tables over multiple pages
\usepackage{multirow} %This package allows you to have tables with text spanning multiple rows and/or columns
\usepackage[unicode]{hyperref}
\usepackage{vmargin} %This is the package to change margings
\setmargnohfrb{40mm}{30mm}{15mm}{30mm} %These correspond to the custom set margins: left, top, right, base
\footskip = 30pt %This is for the footer
\addtolength{\headheight}{7.5pt} %This is to get rid of annoying overfull hbox messages

\pagestyle{plain} %This is to begin the thesis with a different numbering
\renewcommand{\sectionmark}[1]{\markright{#1}} %This is to begin the thesis with unnumbered sections (acknowledgements, etc)
\renewcommand{\chaptermark}[1]{\markboth{#1}{}} %This is to begin the thesis with unnumbered sections (acknowledgements, etc)
\addto\captionsenglish{\renewcommand{\bibname}{\gr Βιβλιογραφία}}

% TITLE PAGE -------------------------------------------------------------
\begin{document}

\begin{titlepage}

\begin{center}

{\Large \gr }

\vspace{2cm} {\large \gr \par} 
\vspace{1cm} {\normalsize \gr \par}

\vspace{10cm} 
\vspace{0.5cm}

\end{center}

{ 
\vspace{2cm}
\small \gr 
}

\end{titlepage}

% ACKNOWLEDGEMENTS----------------------------------------------------------

\newpage

%\include{acknowledgements}

% TABLE OF CONTENTS ETC------------------------------------------------------------------------

\pagestyle{plain}

\tableofcontents

\listoffigures

\listoftables

%ABBREVIATIONS----------------------------------------------------------

\newpage

%\include{abbreviations}

% ------------------------------------------------------------------------
\newpage
\setlength{\parskip}{3ex}

% INCLUDE CHAPTER FILES---------------------------------------------------
\pagenumbering{arabic}
\include{Chapter1}
%\include{Chapter2}
%\include{Chapter3}
%\include{Chapter4}
%\include{Chapter5}
%\include{Chapter6}
%\include{Appendix}

\addcontentsline{toc}{chapter}{bib}
\en

\bibliographystyle{apsr}
\bibliography{roula}

\end{document}
I would very much appreciate any help!!
Last edited by Stefan Kottwitz on Fri Sep 14, 2012 8:05 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.

Post Reply