Fonts & Character Sets ⇒ babel and maketitle
babel and maketitle
I could do it all by making my own title page by hand but am wodering if there is an easier solution.
Thanks.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
babel and maketitle
welcome to the board!
It would be good if you would post a minimal working example which shows the problem, instead of writing a theoretical description. I guess every reader who would like to help by a working solution has to built an example by himself, following the description. Not many readers do that, so you loose most potential helpers.
I would have tested, but there's no code yet, and I don't have time to build code which even doesn't need to match. Perhaps copy your code here, of course without content text.
Stefan
babel and maketitle
Code: Select all
\documentclass[11pt,twocolumn,twoside,a4paper]{report}
\usepackage[cmex10]{amsmath}
\usepackage[greek,british]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[colorlinks=true]{hyperref}
\usepackage[pdftex]{graphicx}
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\pagestyle{headings}
\begin{document}
\pagenumbering{alph}
\title{Research Report}
\author{Name \\
Institute name in English \\
\greektext
Ίδρυμα Έλενικα \\
\latintext
\texttt{email}}
\date{\today}
\maketitle
\pagenumbering{roman}
\tableofcontents
\pagenumbering{arabic}
\chapter{One}
\section{Introduction}
\end{document}- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
babel and maketitle
I tested the example and it works without problems. There's no error, no warning.
Perhaps you don't use UTF-8 encoding in your editor, you could check that, ensure that it's UTF-8 because it has to match the inputenc option.
Stefan
Re: babel and maketitle
Maybe there's a package missing somewhere... It would be nice if Latex's error reporting system was better integrated as a whole to give a better indication of what may be missing; but I guess Latex is one of those projects that is continually improving too rapidly to keep coherence across the whole.
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Re: babel and maketitle
Stefan