I have to use Garamond for my publishing house. Is there a way to use the package garamond without having the numbers in the oldstyle?
Here are the packages which I am using for pdflatex:
\documentclass[twoside,Numbers=Lining,3.5headlines,smallheadings,10.5pt,
tocleft,idxtotoc,final]{scrreprt}
% Fonts for pdflatex:
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{ngerman}
\usepackage{garamond}
\renewcommand{\refname}{Literatur}
\renewcommand{\bibname}{Literatur}
\usepackage{soul}
\usepackage{soulutf8}
\sodef\an{}{.1em}{.4em plus.1em}{.8em plus.1em minus.1em}
\newcommand{\mycohead}[1]{\cohead {\an{ #1}\parbox[t][2mm][t]{0pt}{}}}
\newcommand{\mycehead}[1]{\cehead {\an{ #1}\parbox[t][2mm][t]{0pt}{}}}
%----------------------
\usepackage{eurosym}
\usepackage{lscape}
\usepackage[dvipsdoc]{rotating}
\usepackage{rotating}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsmath, amssymb, graphics}
\usepackage{exscale,latexsym}
\usepackage{setspace}
%\usepackage[flushmargin]{footmisc}
\usepackage{pict2e}
\usepackage{graphpap}
%\usepackage{subfigure}
\usepackage{europs}
%\usepackage{natbib}
%\usepackage[small]{caption}
\usepackage{amssymb}
\usepackage{wasysym}
\usepackage[dvips]{epsfig}
\usepackage{graphicx}
%\usepackage{color}
\usepackage{scrpage2}
\usepackage{tocloft}
%\usepackage{verbatim}
\usepackage{titlesec}
% page format
\usepackage{geometry}
\geometry{verbose, twoside, paperheight=213mm, paperwidth=140mm, textwidth=108mm, textheight=172mm}
%----------------------
\usepackage{manyfoot}
\usepackage[nottoc]{tocbibind}
\usepackage{upgreek}
%\usepackage{array}
% caption italics
\usepackage[font={it}]{caption}
%----------------------
\usepackage[alwaysadjust]{paralist}
\begin{document}
\garamond
\addcontentsline{toc}{chapter}{1 Einleitung}
\mycohead{Einleitung}
\chapter*{1 Einleitung
\\
\vspace{6pt}
\mbox{}
\\\mbox{}
\\\mbox{}
}
This is the basic header. The font seems to be the garamond font.
The numbers are: 123456789. But should be without the old style.
\ungaramond
\\
\\
From here: the garamond is ignored.
This is the standard font and the numbers are: 123456789
\\
\\
But the book has more than 2 hundred pages with thousands of numbers and therefore I need a global routine for avoiding old-style-numbers.
\end{document}

\usepackage{garamond}doesn't seem to use Garamond with my setup, but instead some horribly old versions of Computer Modern. I just wanted to note that yourdocumentclassoptions yield a number of warnings for me (MiKTeX 2.9):smallheadings,tocleftandidxtotocappear to be obsolete, and10.5ptis unused, probably not a valid font size specification. Also, is there a reason you load the font packagelmodernif you want to use Garamond in the end? – doncherry Jun 29 '11 at 12:59lmodern. This is all to make your issue easier to solve and thus for you to get better and faster answers. – doncherry Jun 29 '11 at 15:47