PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Das scharfe ß



sebi21
20-02-2006, 16:49
Hallo Leute,

ich bin neu hier. :)
Habe schon ewig nach einer Lösung für mein Problem "gegoogelt" und nichts gefunden.
Ich schreibe gerade an meiner Diplomarbeit, und mein "ß" sieht merkwürdig aus. Auf den ersten Blick sieht es so aus, als ob zwei Buchstaben übereinander gedruckt wären. In den Skripten meiner Professorin ist es sehr schick.

Habt Ihr vielleicht eine Idee, woran das liegt?


Danke,
Sebi


Oben im Bild ist die gute Version, die ich gerne hätte und unten meine.
http://www.xorex.de/sss.jpg

countbela666
20-02-2006, 17:27
Hallo Sebi,

ich bin neu hier. :)dann erstmal willkommen an Bo(a)rd.

mein "ß" sieht merkwürdig aus. Auf den ersten Blick sieht es so aus, als ob zwei Buchstaben übereinander gedruckt wären.Das ist erstmal bedingt richtig, da die Glyphe für das ß eine Ligatur aus zwei anderen Buchstaben darstellt. Es existieren im Großen und Ganzen vier Varianten der Gestaltung dieses Buchstaben in einer Antiquaschrift:

1) Einzelbuchstaben ſ (sog. "langes s") und s mit großer Unterschneidung
2) Ligatur aus ſ und s (die Variante, die dir nicht gefällt)
3) frakturähnliche Ligatur aus ſ und z
4) Ligatur aus ſ und z, die dem griechischen Beta ähnelt (die Variante, die dir gefällt)

Je nach Zeichensatz und Schriftencoding kann nun eine der vier üblichen Varianten benutzt werden, wobei 2 und 4 am häufugsten auftreten.

Habt Ihr vielleicht eine Idee, woran das liegt?Die Tatsache, dass im Skript deiner Professorin eine andere Glyphe als in deinem Dokument auftritt, wird an unterschiedlichen Encodings liegen. Mit den T1-Schriften bekommst du Variante 2, während die standardmäßig geladenen OT1-Schriften mit Variante 4 arbeiten:

\documentclass{article}
\usepackage[OT1]{fontenc} % Glyphenvariante 2
%\usepackage[T1]{fontenc} % Glyphenvariante 4
\usepackage[latin1]{inputenc}
\begin{document}
Fuß
\end{document}
Wenn dir die Glyphenvariante 2 nicht gefällt, könntest du auf das OT1-Encoding zurückgreifen. Das hat aber andere Nachteile, da hier spezielle Zeichen aus dem europäischen Sprachraum (Umlaute etc.) nicht enthalten sind, die dann durch die Nutzung virtueller Fonts (z.B. durch \usepackage{ae}) hinzugefügt werden müssen, welche wiederum beim Suchen von Begriffen im PDF Probleme bereiten.

Grüße,
Marcel

sebi21
20-02-2006, 17:54
Hallo countbela666,

danke für die schnelle Antwort!
Habe es gleich ausprobiert, aber ohne Erfolg.

Besser gesagt, ich hatte schon Variante 4. Mit [OT1] hat es sich auch nicht verändert.
Hier ist mein Head; vielleicht wirst Du daraus schlau. Den habe ich von jemand anders übernommen.



\documentclass[titlepage, a4paper, 12pt, oneside, german, ngerman]{report}
\pagestyle{headings}
\setcounter{tocdepth}{6}
\setcounter{secnumdepth}{6}
\usepackage[german,ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[dvips]{graphicx}
\usepackage{subfigure}
\usepackage{amsfonts}

\usepackage{makeidx}
\usepackage{gastex}
\usepackage{amsmath}
\usepackage{amssymb}




Danke im voraus,
Sebi

pospiech
20-02-2006, 17:58
Es liegt nicht unbedingt am encoding wie countbela666 sagt, sondern daran welche CM Schrift du benutzt.

Die ganz alte Metapost CM hat ein ß wie du es dir vorstellst. Die neuere cm-super hat das andere ß, wofür der Autor auch gerügt wurde (es gibt viele die deiner Meinung sind).
Die ganz neue Latin Modern (lmodern) verwendet wiederum das alte ß.

Du musst also nur ein \usepackage{lmodern} einfügen.

Matthias

sebi21
20-02-2006, 19:47
Es liegt nicht unbedingt am encoding wie countbela666 sagt, sondern daran welche CM Schrift du benutzt.

Die ganz alte Metapost CM hat ein ß wie du es dir vorstellst. Die neuere cm-super hat das andere ß, wofür der Autor auch gerügt wurde (es gibt viele die deiner Meinung sind).
Die ganz neue Latin Modern (lmodern) verwendet wiederum das alte ß.

Du musst also nur ein \usepackage{lmodern} einfügen.

Matthias


Danke für den Hinweis.

Bei mir kommt allerdings die Fehlermeldung "LaTex Font Warning: Some font shapes were not available, defaults substituted."

Und das dvi sowie ps-File läßt sich auch nicht mehr öffnen. :(

pospiech
20-02-2006, 20:07
Das einige Fonttypen nicht verfügbar sind kann immer passieren. z.B. wenn man fette, kursive Kapitälchen haben möchte. Das gibt es einfach nicht.

Wenn du überhaupt nichts mehr siehst ist aber dein Fontinstallation defekt.
Da lmodern mit tetex 3.x und miktex 2.4 problemlos funktioniert müsstest du schon genauere Daten bieten damit man dir helfen kann.

Also bitte ein Minimalbeispiel, sowie Version deiner LaTeX Distribution

Matthias

sebi21
20-02-2006, 20:34
Hallo!

Also ich habe MiKTeX 2.4.1461 und benutze TeXnicCenter. Zum Thema Mnimalbeispiel kann ich nur folgendes liefern.
Immerhin wandelt er es ohne Fehlermeldung um, doch wird kein ß angezeigt; also nur safsadfasdfasfd
Wenn ich \usepackage{lmodern} auskommentiere, ist alles wieder wie vorher... :confused:



\documentclass[titlepage,a4paper, 12pt, oneside, german, ngerman]{report}
\pagestyle{headings}
\setcounter{tocdepth}{6}
\setcounter{secnumdepth}{6}
\usepackage[german,ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[dvips]{graphicx}
\usepackage{subfigure}
\usepackage{lmodern}

\begin{document}
safsadfasdfasfdßßßß
\end{document}

Salnic
20-02-2006, 21:11
Hi sebi,

ich sehe keinen Grund, warum das nicht funktionieren sollte.

> also nur safsadfasdfasfd
nicht noch zufällig "s"s"s"s oder Fragezeichen am Ende???

Vielleicht ist wirklich die Schriftart nicht ordentlich installiert. Was ist mit anderen Sonderzeichen wie äöü oder
\'a \`a \^a \=a \.a \u{a} \"a \v{a} \ss{} \H{a} \t{aa} \c{a} \d{a} \b{a}


nur nebenbei:
Natürlich kann man nach der neuen und nach der alten Rechtschreibung gleichzeitig schreiben, aber es ist besser, sich für eine Variante zu entscheiden und konsequent durchzuziehen.

\documentclass[titlepage,a4paper, 12pt, oneside, german, ngerman]{report}
\usepackage[german,ngerman]{babel}

\setcounter{tocdepth}{6}
\setcounter{secnumdepth}{6}
wirklich so tief? Hiermit stellst Du ein, wie weit Überüberüberüberschriften durchnummeriert und im Inhaltsverzeichnis aufgenommen werden. Geschmackssache.

Salnic

sebi21
20-02-2006, 21:26
wirklich so tief? Hiermit stellst Du ein, wie weit Überüberüberüberschriften durchnummeriert und im Inhaltsverzeichnis aufgenommen werden. Geschmackssache.

Salnic


Was weiß ich? :rolleyes: Welche Werte würdest Du denn empfehlen?


Deine Sonderzeichen habe ich in den Text eingebunden, und das Ergebnis waren 2 Warnungen. Außerdem lassen sich dvi und ps nicht richtig öffnen.

Wie kann ich denn die Schrift neu installieren?

Salnic
20-02-2006, 22:54
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}

sollten doch völlig reichen.

> und das Ergebnis waren 2 Warnungen
welche? Keine Fehlermeldungen?
Salnic

sebi21
21-02-2006, 11:11
Die Werte werde ich mir merken und dann ausprobieren. Danke schonmal dafür.


Es gibt keine Fehler, sondern folgende zwei Warnungen:

1.) LaTex Font Warnung: Font Shape 'OML/lmr/m/n' undefined

2.) LaTex Font Warnung: Some font shapes were not available, defaults substituted.



Ich würde wirklich gerne die Schrift noch mal installieren; glaube mittlerweile auch, daß beim Herunterladen etwas schiefgelaufen ist. Aber ich habe wirklich keine Ahnung, wie das geht.

pospiech
21-02-2006, 11:27
Kannst du bitte mal die Logdatei zu folgendem Code posten (mit utf8 oder latin1 jenachdem was du verwendest)



\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}

\begin{document}
ß
\end{document}


bei mir sähe das dann so aus


*****
***** PDFLaTeX output:
***** cd '/home/matthias/Documents/Matthias/LaTeX/Minimal'
***** pdflatex -shell-escape -interaction=nonstopmode 'minimal.tex'
*****
This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4)
\write18 enabled.
entering extended mode
(./minimal.tex
LaTeX2e
Babel and hyphenation patterns for american, french, german, ngerman, b
ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/report.cls
Document Class: report 2004/02/16 v1.4f Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size10.clo))
(/usr/share/texmf/tex/latex/base/inputenc.sty
(/usr/share/texmf/tex/latex/base/utf8.def
(/usr/share/texmf/tex/latex/base/t1enc.dfu)
(/usr/share/texmf/tex/latex/base/ot1enc.dfu)
(/usr/share/texmf/tex/latex/base/omsenc.dfu)))
(/usr/share/texmf/tex/latex/base/fontenc.sty
(/usr/share/texmf/tex/latex/base/t1enc.def))
(/usr/share/texmf/tex/latex/lm/lmodern.sty) (./minimal.aux)
(/usr/share/texmf/tex/latex/lm/t1lmr.fd) [1{/var/lib/texmf/fonts/map/pdftex/upd
map/pdftex.map}] (./minimal.aux) ){/usr/share/texmf/fonts/enc/dvips/lm/cork-lm.
enc}</usr/share/texmf/fonts/type1/public/lm/lmr10.pfb>
Output written on minimal.pdf (1 page, 13587 bytes).
Transcript written on minimal.log.


Wenn du lmodern neu installieren willst solltest du das Paket mit MPM einmal deinstallieren und danach wieder installieren.

Matthias

sebi21
21-02-2006, 16:53
Hallo Matthias,

bei mir produziert der Code einen Emergency Stop.


P.S.: Wie kann man ein Paket mit "MPM" deinstallieren?

EDIT: Ich habe es neuinstalliert. Hat aber nichts gebracht. Nur Fehlermeldungen.
Wenn ich auf Sonderzeichen verzichte, kommen zwar nicht mehr unbedingt Fehler,
aber sowohl DVI-Viewer als auch Ghost als auch Adobe Acrobat beschweren sich über eine nicht vorhandene Schrift.




This is e-TeX, Version 3.141592-2.2 (MiKTeX 2.4) (preloaded format=latex 2006.1.20) 21 FEB 2006 16:51
entering extended mode
**LaTeX1.tex
(LaTeX1.tex
LaTeX2e <2003/12/01>
Babel <v3.8a> and hyphenation patterns for english, french, german, ngerman, dumylang, nohyphenation, loaded.
(C:\Programme\MikTeXmf\tex\latex\base\report.cls
Document Class: report 2004/02/16 v1.4f Standard LaTeX document class
(C:\Programme\MikTeXmf\tex\latex\base\size10.clo
File: size10.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
)
\c@part=\count79
\c@chapter=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
) (C:\Programme\MikTeXmf\tex\latex\base\inputenc.sty
Package: inputenc 2004/02/05 v1.0d Input encoding file

(C:\Programme\MikTeXmf\tex\latex\base\utf8.def
File: utf8.def 2004/02/09 v1.1b UTF-8 support for inputenc
Now handling font encoding OML ...
... no UTF-8 mapping file for font encoding OML
Now handling font encoding T1 ...
... processing UTF-8 mapping file for font encoding T1
(C:\Programme\MikTeXmf\tex\latex\base\t1enc.dfu
File: t1enc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C0 (decimal 192)
defining Unicode char U+00C1 (decimal 193)
defining Unicode char U+00C2 (decimal 194)
defining Unicode char U+00C3 (decimal 195)
defining Unicode char U+00C4 (decimal 196)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00C7 (decimal 199)
defining Unicode char U+00C8 (decimal 200)
defining Unicode char U+00C9 (decimal 201)
defining Unicode char U+00CA (decimal 202)
defining Unicode char U+00CB (decimal 203)
defining Unicode char U+00CC (decimal 204)
defining Unicode char U+00CD (decimal 205)
defining Unicode char U+00CE (decimal 206)
defining Unicode char U+00CF (decimal 207)
defining Unicode char U+00D0 (decimal 208)
defining Unicode char U+00D1 (decimal 209)
defining Unicode char U+00D2 (decimal 210)
defining Unicode char U+00D3 (decimal 211)
defining Unicode char U+00D4 (decimal 212)
defining Unicode char U+00D5 (decimal 213)
defining Unicode char U+00D6 (decimal 214)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00D9 (decimal 217)
defining Unicode char U+00DA (decimal 218)
defining Unicode char U+00DB (decimal 219)
defining Unicode char U+00DC (decimal 220)
defining Unicode char U+00DD (decimal 221)
defining Unicode char U+00DE (decimal 222)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E0 (decimal 224)
defining Unicode char U+00E1 (decimal 225)
defining Unicode char U+00E2 (decimal 226)
defining Unicode char U+00E3 (decimal 227)
defining Unicode char U+00E4 (decimal 228)
defining Unicode char U+00E5 (decimal 229)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00E7 (decimal 231)
defining Unicode char U+00E8 (decimal 232)
defining Unicode char U+00E9 (decimal 233)
defining Unicode char U+00EA (decimal 234)
defining Unicode char U+00EB (decimal 235)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F0 (decimal 240)
defining Unicode char U+00F1 (decimal 241)
defining Unicode char U+00F2 (decimal 242)
defining Unicode char U+00F3 (decimal 243)
defining Unicode char U+00F4 (decimal 244)
defining Unicode char U+00F5 (decimal 245)
defining Unicode char U+00F6 (decimal 246)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+00F9 (decimal 249)
defining Unicode char U+00FA (decimal 250)
defining Unicode char U+00FB (decimal 251)
defining Unicode char U+00FC (decimal 252)
defining Unicode char U+00FD (decimal 253)
defining Unicode char U+00FE (decimal 254)
defining Unicode char U+00FF (decimal 255)
defining Unicode char U+0102 (decimal 258)
defining Unicode char U+0103 (decimal 259)
defining Unicode char U+0104 (decimal 260)
defining Unicode char U+0105 (decimal 261)
defining Unicode char U+0106 (decimal 262)
defining Unicode char U+0107 (decimal 263)
defining Unicode char U+010C (decimal 268)
defining Unicode char U+010D (decimal 269)
defining Unicode char U+010E (decimal 270)
defining Unicode char U+010F (decimal 271)
defining Unicode char U+0110 (decimal 272)
defining Unicode char U+0111 (decimal 273)
defining Unicode char U+0118 (decimal 280)
defining Unicode char U+0119 (decimal 281)
defining Unicode char U+011A (decimal 282)
defining Unicode char U+011B (decimal 283)
defining Unicode char U+011E (decimal 286)
defining Unicode char U+011F (decimal 287)
defining Unicode char U+0130 (decimal 304)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0139 (decimal 313)
defining Unicode char U+013A (decimal 314)
defining Unicode char U+013D (decimal 317)
defining Unicode char U+013E (decimal 318)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0143 (decimal 323)
defining Unicode char U+0144 (decimal 324)
defining Unicode char U+0147 (decimal 327)
defining Unicode char U+0148 (decimal 328)
defining Unicode char U+014A (decimal 330)
defining Unicode char U+014B (decimal 331)
defining Unicode char U+0150 (decimal 336)
defining Unicode char U+0151 (decimal 337)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+0154 (decimal 340)
defining Unicode char U+0155 (decimal 341)
defining Unicode char U+0158 (decimal 344)
defining Unicode char U+0159 (decimal 345)
defining Unicode char U+015A (decimal 346)
defining Unicode char U+015B (decimal 347)
defining Unicode char U+015E (decimal 350)
defining Unicode char U+015F (decimal 351)
defining Unicode char U+0160 (decimal 352)
defining Unicode char U+0161 (decimal 353)
defining Unicode char U+0162 (decimal 354)
defining Unicode char U+0163 (decimal 355)
defining Unicode char U+0164 (decimal 356)
defining Unicode char U+0165 (decimal 357)
defining Unicode char U+016E (decimal 366)
defining Unicode char U+016F (decimal 367)
defining Unicode char U+0170 (decimal 368)
defining Unicode char U+0171 (decimal 369)
defining Unicode char U+0178 (decimal 376)
defining Unicode char U+0179 (decimal 377)
defining Unicode char U+017A (decimal 378)
defining Unicode char U+017B (decimal 379)
defining Unicode char U+017C (decimal 380)
defining Unicode char U+017D (decimal 381)
defining Unicode char U+017E (decimal 382)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201A (decimal 8218)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
defining Unicode char U+201E (decimal 8222)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+2039 (decimal 8249)
defining Unicode char U+203A (decimal 8250)
defining Unicode char U+2423 (decimal 9251)
)
Now handling font encoding OT1 ...
... processing UTF-8 mapping file for font encoding OT1

(C:\Programme\MikTeXmf\tex\latex\base\ot1enc.dfu
File: ot1enc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00B8 (decimal 184)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
)
Now handling font encoding OMS ...
... processing UTF-8 mapping file for font encoding OMS
(C:\Programme\MikTeXmf\tex\latex\base\omsenc.dfu
File: omsenc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00B6 (decimal 182)
defining Unicode char U+02D9 (decimal 729)
defining Unicode char U+2020 (decimal 8224)
defining Unicode char U+2021 (decimal 8225)
defining Unicode char U+2022 (decimal 8226)
)
Now handling font encoding OMX ...
... no UTF-8 mapping file for font encoding OMX
Now handling font encoding U ...
... no UTF-8 mapping file for font encoding U
defining Unicode char U+00A9 (decimal 169)
defining Unicode char U+00AA (decimal 170)
defining Unicode char U+00AE (decimal 174)
defining Unicode char U+00BA (decimal 186)
defining Unicode char U+02C6 (decimal 710)
defining Unicode char U+02CA (decimal 714)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2026 (decimal 8230)
defining Unicode char U+2122 (decimal 8482)
defining Unicode char U+2423 (decimal 9251)
))
(C:\Programme\MikTeXmf\tex\latex\base\fontenc.sty
Package: fontenc 2004/02/22 v1.99f Standard LaTeX package
(C:\Programme\MikTeXmf\tex\latex\base\t1enc.def
File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
(C:\Programme\MikTeXmf\tex\latex\lm\lmodern.sty
Package: lmodern 2005/02/28
)
No file LaTeX1.aux.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Try loading font information for T1+lmr on input line 6.
(C:\Programme\MikTeXmf\tex\latex\lm\t1lmr.fd
File: t1lmr.fd 2005/08/29 v1.2 Font defs for Latin Modern
)

! Package inputenc Error: Unicode char \u8:ß\end not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...

l.8 \end
{document}
Your command was ignored.
Type I <command> <return> to replace it with another command,
or <return> to continue without it.

)
! Emergency stop.
<*> LaTeX1.tex

*** (job aborted, no legal \end found)


Here is how much of TeX's memory you used:
699 strings out of 95898
6058 string characters out of 1194924
49610 words of memory out of 1053387
3757 multiletter control sequences out of 35000
7433 words of font info for 16 fonts, out of 500000 for 1000
14 hyphenation exceptions out of 607
23i,0n,17p,161b,74s stack positions out of 1500i,500n,5000p,200000b,32768s
No pages of output.

pospiech
21-02-2006, 17:05
Hallo Matthias,

bei mir produziert der Code einen Emergency Stop.

richtig. und ich wette das du im Code das utf8 nicht in latin1 geändert hast, aber die datei als latin1 gespeichert ist. Das muss zu einem Fehler führen.
Und Poste nachdem du sicher bist, das das stimmt einmal die Ausgabe von pdflatex.



P.S.: Wie kann man ein Paket mit "MPM" deinstallieren?

MPM = Miktex Package Manager. Ist in deinem Startmenu unter Miktex. Das Programm ist selbsterklärend.

Zum Vergleich hier meine vollständige Logdatei


This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (format=pdflatex 2005.5.8) 21 FEB 2006 17:06
entering extended mode
**minimal.tex
(./minimal.tex
LaTeX2e <2003/12/01>
Babel <v3.8d> and hyphenation patterns for american, french, german, ngerman, b
ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/report.cls
Document Class: report 2004/02/16 v1.4f Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size10.clo
File: size10.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
)
\c@part=\count79
\c@chapter=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/share/texmf/tex/latex/base/inputenc.sty
Package: inputenc 2004/02/05 v1.0d Input encoding file

(/usr/share/texmf/tex/latex/base/utf8.def
File: utf8.def 2004/02/09 v1.1b UTF-8 support for inputenc
Now handling font encoding OML ...
... no UTF-8 mapping file for font encoding OML
Now handling font encoding T1 ...
... processing UTF-8 mapping file for font encoding T1

(/usr/share/texmf/tex/latex/base/t1enc.dfu
File: t1enc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C0 (decimal 192)
defining Unicode char U+00C1 (decimal 193)
defining Unicode char U+00C2 (decimal 194)
defining Unicode char U+00C3 (decimal 195)
defining Unicode char U+00C4 (decimal 196)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00C7 (decimal 199)
defining Unicode char U+00C8 (decimal 200)
defining Unicode char U+00C9 (decimal 201)
defining Unicode char U+00CA (decimal 202)
defining Unicode char U+00CB (decimal 203)
defining Unicode char U+00CC (decimal 204)
defining Unicode char U+00CD (decimal 205)
defining Unicode char U+00CE (decimal 206)
defining Unicode char U+00CF (decimal 207)
defining Unicode char U+00D0 (decimal 208)
defining Unicode char U+00D1 (decimal 209)
defining Unicode char U+00D2 (decimal 210)
defining Unicode char U+00D3 (decimal 211)
defining Unicode char U+00D4 (decimal 212)
defining Unicode char U+00D5 (decimal 213)
defining Unicode char U+00D6 (decimal 214)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00D9 (decimal 217)
defining Unicode char U+00DA (decimal 218)
defining Unicode char U+00DB (decimal 219)
defining Unicode char U+00DC (decimal 220)
defining Unicode char U+00DD (decimal 221)
defining Unicode char U+00DE (decimal 222)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E0 (decimal 224)
defining Unicode char U+00E1 (decimal 225)
defining Unicode char U+00E2 (decimal 226)
defining Unicode char U+00E3 (decimal 227)
defining Unicode char U+00E4 (decimal 228)
defining Unicode char U+00E5 (decimal 229)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00E7 (decimal 231)
defining Unicode char U+00E8 (decimal 232)
defining Unicode char U+00E9 (decimal 233)
defining Unicode char U+00EA (decimal 234)
defining Unicode char U+00EB (decimal 235)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F0 (decimal 240)
defining Unicode char U+00F1 (decimal 241)
defining Unicode char U+00F2 (decimal 242)
defining Unicode char U+00F3 (decimal 243)
defining Unicode char U+00F4 (decimal 244)
defining Unicode char U+00F5 (decimal 245)
defining Unicode char U+00F6 (decimal 246)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+00F9 (decimal 249)
defining Unicode char U+00FA (decimal 250)
defining Unicode char U+00FB (decimal 251)
defining Unicode char U+00FC (decimal 252)
defining Unicode char U+00FD (decimal 253)
defining Unicode char U+00FE (decimal 254)
defining Unicode char U+00FF (decimal 255)
defining Unicode char U+0102 (decimal 258)
defining Unicode char U+0103 (decimal 259)
defining Unicode char U+0104 (decimal 260)
defining Unicode char U+0105 (decimal 261)
defining Unicode char U+0106 (decimal 262)
defining Unicode char U+0107 (decimal 263)
defining Unicode char U+010C (decimal 268)
defining Unicode char U+010D (decimal 269)
defining Unicode char U+010E (decimal 270)
defining Unicode char U+010F (decimal 271)
defining Unicode char U+0110 (decimal 272)
defining Unicode char U+0111 (decimal 273)
defining Unicode char U+0118 (decimal 280)
defining Unicode char U+0119 (decimal 281)
defining Unicode char U+011A (decimal 282)
defining Unicode char U+011B (decimal 283)
defining Unicode char U+011E (decimal 286)
defining Unicode char U+011F (decimal 287)
defining Unicode char U+0130 (decimal 304)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0139 (decimal 313)
defining Unicode char U+013A (decimal 314)
defining Unicode char U+013D (decimal 317)
defining Unicode char U+013E (decimal 318)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0143 (decimal 323)
defining Unicode char U+0144 (decimal 324)
defining Unicode char U+0147 (decimal 327)
defining Unicode char U+0148 (decimal 328)
defining Unicode char U+014A (decimal 330)
defining Unicode char U+014B (decimal 331)
defining Unicode char U+0150 (decimal 336)
defining Unicode char U+0151 (decimal 337)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+0154 (decimal 340)
defining Unicode char U+0155 (decimal 341)
defining Unicode char U+0158 (decimal 344)
defining Unicode char U+0159 (decimal 345)
defining Unicode char U+015A (decimal 346)
defining Unicode char U+015B (decimal 347)
defining Unicode char U+015E (decimal 350)
defining Unicode char U+015F (decimal 351)
defining Unicode char U+0160 (decimal 352)
defining Unicode char U+0161 (decimal 353)
defining Unicode char U+0162 (decimal 354)
defining Unicode char U+0163 (decimal 355)
defining Unicode char U+0164 (decimal 356)
defining Unicode char U+0165 (decimal 357)
defining Unicode char U+016E (decimal 366)
defining Unicode char U+016F (decimal 367)
defining Unicode char U+0170 (decimal 368)
defining Unicode char U+0171 (decimal 369)
defining Unicode char U+0178 (decimal 376)
defining Unicode char U+0179 (decimal 377)
defining Unicode char U+017A (decimal 378)
defining Unicode char U+017B (decimal 379)
defining Unicode char U+017C (decimal 380)
defining Unicode char U+017D (decimal 381)
defining Unicode char U+017E (decimal 382)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201A (decimal 8218)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
defining Unicode char U+201E (decimal 8222)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+2039 (decimal 8249)
defining Unicode char U+203A (decimal 8250)
defining Unicode char U+2423 (decimal 9251)
)
Now handling font encoding OT1 ...
... processing UTF-8 mapping file for font encoding OT1

(/usr/share/texmf/tex/latex/base/ot1enc.dfu
File: ot1enc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00B8 (decimal 184)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
)
Now handling font encoding OMS ...
... processing UTF-8 mapping file for font encoding OMS

(/usr/share/texmf/tex/latex/base/omsenc.dfu
File: omsenc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00B6 (decimal 182)
defining Unicode char U+02D9 (decimal 729)
defining Unicode char U+2020 (decimal 8224)
defining Unicode char U+2021 (decimal 8225)
defining Unicode char U+2022 (decimal 8226)
)
Now handling font encoding OMX ...
... no UTF-8 mapping file for font encoding OMX
Now handling font encoding U ...
... no UTF-8 mapping file for font encoding U
defining Unicode char U+00A9 (decimal 169)
defining Unicode char U+00AA (decimal 170)
defining Unicode char U+00AE (decimal 174)
defining Unicode char U+00BA (decimal 186)
defining Unicode char U+02C6 (decimal 710)
defining Unicode char U+02CA (decimal 714)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2026 (decimal 8230)
defining Unicode char U+2122 (decimal 8482)
defining Unicode char U+2423 (decimal 9251)
))
(/usr/share/texmf/tex/latex/base/fontenc.sty
Package: fontenc 2004/02/22 v1.99f Standard LaTeX package

(/usr/share/texmf/tex/latex/base/t1enc.def
File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
(/usr/share/texmf/tex/latex/lm/lmodern.sty
Package: lmodern 2003/07/16
)
No file minimal.aux.
\openout1 = `minimal.aux'.

LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Try loading font information for T1+lmr on input line 6.
(/usr/share/texmf/tex/latex/lm/t1lmr.fd
File: t1lmr.fd 2003/07/22 v1.1 Font defs for Latin Modern
) [1

{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./minimal.aux) )
Here is how much of TeX's memory you used:
661 strings out of 94499
6345 string characters out of 1176749
750693 words of memory out of 4202345
3887 multiletter control sequences out of 10000+50000
7535 words of font info for 16 fonts, out of 500000 for 2000
580 hyphenation exceptions out of 1000
23i,4n,17p,178b,113s stack positions out of 1500i,500n,5000p,200000b,5000s
PDF statistics:
7 PDF objects out of 300000
0 named destinations out of 131072
1 words of extra memory for PDF output out of 65536
{/usr/sha
re/texmf/fonts/enc/dvips/lm/cork-lm.enc}</usr/share/texmf/fonts/type1/public/lm
/lmr10.pfb>
Output written on minimal.pdf (1 page, 13589 bytes).


Beim Vergleich sieht man, dass alle Fontinformationen richtig geladen werden. Erst bei der Erkennung der Umlaute scheitert LaTeX bei dir Aufgrund eines falschen endcodings.

Matthias

sebi21
21-02-2006, 17:23
Hallo Matthias,

mir sagt weder utf8 noch latin1 etwas und wußte nicht, daß das Dokument in der einen oder anderen Form gespeichert werden kann.

Whatever; jedenfalls habe ich es in latin1 geändert, und es erscheint erstmal kein Fehler. So weit so gut! :)

Doch beim Öffnen des DVI's meldet Yap: Not all fonts could be loaded. See File->Document Properties for details.


Und da steht bei Fonts:

ec-lmr10 >>> Not loadable - double click to see details


Das habe ich natürlich getan, und es erscheint:


Making PK font:
C:\Programme\MikTeXmf\miktex\bin\makepk.exe --verbose ec-lmr10 600 600 magstep(0.0) ljfour
Trying to make PK font "ec-lmr10" (at 600 DPI)...
"makemf" --verbose "ec-lmr10"
"ttf2pk" -q -t "ec-lmr10"
makepk: "ec-lmr10.pk" could not be created.


Loading 'cmr10' instead.







This is e-TeX, Version 3.141592-2.2 (MiKTeX 2.4) (preloaded format=latex 2006.1.20) 21 FEB 2006 17:18
entering extended mode
**LaTeX1.tex
(LaTeX1.tex
LaTeX2e <2003/12/01>
Babel <v3.8a> and hyphenation patterns for english, french, german, ngerman, dumylang, nohyphenation, loaded.
(C:\Programme\MikTeXmf\tex\latex\base\report.cls
Document Class: report 2004/02/16 v1.4f Standard LaTeX document class
(C:\Programme\MikTeXmf\tex\latex\base\size10.clo
File: size10.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
)
\c@part=\count79
\c@chapter=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
) (C:\Programme\MikTeXmf\tex\latex\base\inputenc.sty
Package: inputenc 2004/02/05 v1.0d Input encoding file

(C:\Programme\MikTeXmf\tex\latex\base\latin1.def
File: latin1.def 2004/02/05 v1.0d Input encoding file
)) (C:\Programme\MikTeXmf\tex\latex\base\fontenc.sty
Package: fontenc 2004/02/22 v1.99f Standard LaTeX package

(C:\Programme\MikTeXmf\tex\latex\base\t1enc.def
File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
)) (C:\Programme\MikTeXmf\tex\latex\lm\lmodern.sty
Package: lmodern 2005/02/28
) (LaTeX1.aux)
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Try loading font information for T1+lmr on input line 6.

(C:\Programme\MikTeXmf\tex\latex\lm\t1lmr.fd
File: t1lmr.fd 2005/08/29 v1.2 Font defs for Latin Modern
) [1

] (LaTeX1.aux) )
Here is how much of TeX's memory you used:
532 strings out of 95898
5114 string characters out of 1194924
48136 words of memory out of 1051913
3605 multiletter control sequences out of 35000
7433 words of font info for 16 fonts, out of 500000 for 1000
14 hyphenation exceptions out of 607
23i,4n,17p,161b,113s stack positions out of 1500i,500n,5000p,200000b,32768s

Output written on LaTeX1.dvi (1 page, 240 bytes).

pospiech
21-02-2006, 18:16
und was passiert bei pdflatex ?

Matthias

sebi21
21-02-2006, 18:35
Du meinst Latex=>PDF ?


Der Acrobat sagt: "Eine Schrift ist nicht im Ressourcen-Dictionary verzeichnet - Helvetica wird verwendet."

pospiech
21-02-2006, 19:12
Dann installier lmodern wirklich nochmal neu. Die Schrift ansich ist zwat vorhanden, aber irgentwelche Einstellungen scheinen nicht richtig zu sein.

Matthias

sebi21
21-02-2006, 20:35
Das hatte ich schon getan (siehe mein Post von 16:53).

Zuerst hatte ich die Schrift nicht gefunden, aber sie wird im Package manager nur als lm bezeichnet. Die habe ich dann deinstalliert.
Beim erneuten Kompilieren der Datei meldete das TeXnicCenter dann auch das Fehlende Package und hat es neu heruntergeladen.

Das Ergebnis war wie gesagt das gleiche. :(



Vielleicht kann ich es irgendwie manuell herunterladen und installieren?

thongor
24-02-2006, 00:29
Hallole,

vielleicht könnten wir uns alle zuerst einmal darauf einigen, welche zwei Schriftarten da überhaupt verwendet werden. Ich habe es hier einmal ausprobiert und bekommt mit Times die schöne Version. Bei meiner Lieblingsschrift Palatino ist es auch die schlechtere Variante.

Das german und ngerman sich beissen, wurde ja schon gesagt.

Versuch doch mal anstatt dem report das scrreprt aus dem Koma-Script.


\documentclass[a4paper,12pt]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\usepackage[protrusion=true,expansion=true]{microtype}
\begin{document}
öäü ÖÄÜ ßßßß
\end{document}

Linux verwendet mittlerweile fast nur noch utf8 für die Umlaute als Übersetzungstabelle, das beißt sich mit latin1.

pospiech
24-02-2006, 08:44
Ohne die Richtigkeit deiner Aussage in Frage stellen zu wollen, glaube ich das der OP eigentlich eine Variante der Original LaTeX Schrift (Computer Modern) haben wollte ohne das unschöne ß.

Matthias

sebi21
27-02-2006, 12:37
Hallo thongor,

ich habe Deinen Code 1:1 übernommen und bekomme einen emergency stop. :confused:

Weißt Du vielleicht, wie ich die Schrift lomdern manuell installieren kann? Ich kann mir nicht vorstellen, daß das nicht gehen soll.




This is e-TeX, Version 3.141592-2.2 (MiKTeX 2.4) (preloaded format=latex 2006.1.20) 27 FEB 2006 12:33
entering extended mode
**Test*neu.tex
(Test neu.tex
LaTeX2e <2003/12/01>
Babel <v3.8a> and hyphenation patterns for english, french, german, ngerman, dumylang, nohyphenation, loaded.
(C:\Programme\MikTeXmf\tex\latex\koma-script\scrreprt.cls
Document Class: scrreprt 2004/09/16 v2.9t LaTeX2e KOMA document class
(C:\Programme\MikTeXmf\tex\latex\koma-script\scrlfile.sty
Package: scrlfile 2004/09/16 v2.9t LaTeX2e KOMA package

Package scrlfile, 2004/09/16 v2.9t LaTeX2e KOMA package
Copyright (C) Markus Kohm

) (C:\Programme\MikTeXmf\tex\latex\base\size12.clo
File: size12.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
) (C:\Programme\MikTeXmf\tex\latex\koma-script\typearea.sty
Package: typearea 2004/09/16 v2.9t LaTeX2e KOMA package

Package typearea, 2004/09/16 v2.9t LaTeX2e KOMA package
Copyright (C) Frank Neukam, 1992-1994
Copyright (C) Markus Kohm, 1994-2002

\ta@bcor=\skip41
\ta@div=\count79
\ta@hblk=\skip42
\ta@vblk=\skip43
\ta@temp=\skip44
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 12
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 448.13095pt
(typearea) \columnwidth = 0.0pt
(typearea) \columnsep = 0.0pt
(typearea) DIV-departure = -6/100
(typearea) \evensidemargin = 2.4185pt
(typearea) \oddsidemargin = 2.4185pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 635.5pt
(typearea) \topmargin = -41.72441pt
(typearea) \headheight = 18.125pt
(typearea) \headsep = 21.75pt
(typearea) \topskip = 12.0pt
(typearea) \footskip = 50.75pt
(typearea) \baselineskip = 14.5pt
(typearea) on input line 633.
)
\c@part=\count80
\c@chapter=\count81
\c@section=\count82
\c@subsection=\count83
\c@subsubsection=\count84
\c@paragraph=\count85
\c@subparagraph=\count86
\c@figure=\count87
\c@table=\count88
\abovecaptionskip=\skip45
\belowcaptionskip=\skip46
\c@pti@nb@sid@b@x=\box26
\bibindent=\dimen102
) (C:\Programme\MikTeXmf\tex\generic\babel\babel.sty
Package: babel 2004/02/19 v3.8a The Babel package
(C:\Programme\MikTeXmf\tex\generic\babel\ngermanb. ldf
Language: ngermanb 2004/02/20 v2.6m new German support from the babel system

(C:\Programme\MikTeXmf\tex\generic\babel\babel.def
File: babel.def 2004/02/19 v3.8a Babel common definitions
\babel@savecnt=\count89
\U@D=\dimen103
)
\l@naustrian = a dialect from \language\l@ngerman
Package babel Info: Making " an active character on input line 92.
)) (C:\Programme\MikTeXmf\tex\latex\base\inputenc.sty
Package: inputenc 2004/02/05 v1.0d Input encoding file

(C:\Programme\MikTeXmf\tex\latex\base\utf8.def
File: utf8.def 2004/02/09 v1.1b UTF-8 support for inputenc
Now handling font encoding OML ...
... no UTF-8 mapping file for font encoding OML
Now handling font encoding T1 ...
... processing UTF-8 mapping file for font encoding T1
(C:\Programme\MikTeXmf\tex\latex\base\t1enc.dfu
File: t1enc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C0 (decimal 192)
defining Unicode char U+00C1 (decimal 193)
defining Unicode char U+00C2 (decimal 194)
defining Unicode char U+00C3 (decimal 195)
defining Unicode char U+00C4 (decimal 196)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00C7 (decimal 199)
defining Unicode char U+00C8 (decimal 200)
defining Unicode char U+00C9 (decimal 201)
defining Unicode char U+00CA (decimal 202)
defining Unicode char U+00CB (decimal 203)
defining Unicode char U+00CC (decimal 204)
defining Unicode char U+00CD (decimal 205)
defining Unicode char U+00CE (decimal 206)
defining Unicode char U+00CF (decimal 207)
defining Unicode char U+00D0 (decimal 208)
defining Unicode char U+00D1 (decimal 209)
defining Unicode char U+00D2 (decimal 210)
defining Unicode char U+00D3 (decimal 211)
defining Unicode char U+00D4 (decimal 212)
defining Unicode char U+00D5 (decimal 213)
defining Unicode char U+00D6 (decimal 214)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00D9 (decimal 217)
defining Unicode char U+00DA (decimal 218)
defining Unicode char U+00DB (decimal 219)
defining Unicode char U+00DC (decimal 220)
defining Unicode char U+00DD (decimal 221)
defining Unicode char U+00DE (decimal 222)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E0 (decimal 224)
defining Unicode char U+00E1 (decimal 225)
defining Unicode char U+00E2 (decimal 226)
defining Unicode char U+00E3 (decimal 227)
defining Unicode char U+00E4 (decimal 228)
defining Unicode char U+00E5 (decimal 229)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00E7 (decimal 231)
defining Unicode char U+00E8 (decimal 232)
defining Unicode char U+00E9 (decimal 233)
defining Unicode char U+00EA (decimal 234)
defining Unicode char U+00EB (decimal 235)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F0 (decimal 240)
defining Unicode char U+00F1 (decimal 241)
defining Unicode char U+00F2 (decimal 242)
defining Unicode char U+00F3 (decimal 243)
defining Unicode char U+00F4 (decimal 244)
defining Unicode char U+00F5 (decimal 245)
defining Unicode char U+00F6 (decimal 246)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+00F9 (decimal 249)
defining Unicode char U+00FA (decimal 250)
defining Unicode char U+00FB (decimal 251)
defining Unicode char U+00FC (decimal 252)
defining Unicode char U+00FD (decimal 253)
defining Unicode char U+00FE (decimal 254)
defining Unicode char U+00FF (decimal 255)
defining Unicode char U+0102 (decimal 258)
defining Unicode char U+0103 (decimal 259)
defining Unicode char U+0104 (decimal 260)
defining Unicode char U+0105 (decimal 261)
defining Unicode char U+0106 (decimal 262)
defining Unicode char U+0107 (decimal 263)
defining Unicode char U+010C (decimal 268)
defining Unicode char U+010D (decimal 269)
defining Unicode char U+010E (decimal 270)
defining Unicode char U+010F (decimal 271)
defining Unicode char U+0110 (decimal 272)
defining Unicode char U+0111 (decimal 273)
defining Unicode char U+0118 (decimal 280)
defining Unicode char U+0119 (decimal 281)
defining Unicode char U+011A (decimal 282)
defining Unicode char U+011B (decimal 283)
defining Unicode char U+011E (decimal 286)
defining Unicode char U+011F (decimal 287)
defining Unicode char U+0130 (decimal 304)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0139 (decimal 313)
defining Unicode char U+013A (decimal 314)
defining Unicode char U+013D (decimal 317)
defining Unicode char U+013E (decimal 318)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0143 (decimal 323)
defining Unicode char U+0144 (decimal 324)
defining Unicode char U+0147 (decimal 327)
[...]
defining Unicode char U+201D (decimal 8221)
defining Unicode char U+201E (decimal 8222)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+2039 (decimal 8249)
defining Unicode char U+203A (decimal 8250)
defining Unicode char U+2423 (decimal 9251)
)
Now handling font encoding OT1 ...
... processing UTF-8 mapping file for font encoding OT1

(C:\Programme\MikTeXmf\tex\latex\base\ot1enc.dfu
File: ot1enc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00B8 (decimal 184)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
)
Now handling font encoding OMS ...
... processing UTF-8 mapping file for font encoding OMS
(C:\Programme\MikTeXmf\tex\latex\base\omsenc.dfu
File: omsenc.dfu 2004/02/09 v1.1b UTF-8 support for inputenc
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00B6 (decimal 182)
defining Unicode char U+02D9 (decimal 729)
defining Unicode char U+2020 (decimal 8224)
defining Unicode char U+2021 (decimal 8225)
defining Unicode char U+2022 (decimal 8226)
)
Now handling font encoding OMX ...
... no UTF-8 mapping file for font encoding OMX
Now handling font encoding U ...
... no UTF-8 mapping file for font encoding U
defining Unicode char U+00A9 (decimal 169)
defining Unicode char U+00AA (decimal 170)
defining Unicode char U+00AE (decimal 174)
defining Unicode char U+00BA (decimal 186)
defining Unicode char U+02C6 (decimal 710)
defining Unicode char U+02CA (decimal 714)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2026 (decimal 8230)
defining Unicode char U+2122 (decimal 8482)
defining Unicode char U+2423 (decimal 9251)
))
(C:\Programme\MikTeXmf\tex\latex\base\fontenc.sty
Package: fontenc 2004/02/22 v1.99f Standard LaTeX package
(C:\Programme\MikTeXmf\tex\latex\base\t1enc.def
File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
(C:\Programme\MikTeXmf\tex\latex\psnfss\mathptmx.s ty
Package: mathptmx 2004/01/26 PSNFSS-v9.1b Times w/ Math, improved (SPQR, WaS)
LaTeX Font Info: Redeclaring symbol font `operators' on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
\symbold=\mathgroup4
\symitalic=\mathgroup5
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/ptm/m/it on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/ptm/m/it on input line 35.
LaTeX Info: Redefining \hbar on input line 50.
)

! LaTeX Error: File `microtype.sty' not found.

Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)

Enter file name:
! Emergency stop.
<read *>

l.7 \begin
{document}

*** (cannot \read from terminal in nonstop modes)


Here is how much of TeX's memory you used:
1489 strings out of 95898
15678 string characters out of 1194924
73491 words of memory out of 1077268
4521 multiletter control sequences out of 35000
4702 words of font info for 16 fonts, out of 500000 for 1000
14 hyphenation exceptions out of 607
27i,1n,24p,188b,47s stack positions out of 1500i,500n,5000p,200000b,32768s
No pages of output.

pospiech
27-02-2006, 14:34
Wenn du deine Logdatei genau liest, sieht man das dir das Paket
microtype.sty

fehlt. Das brauchst du aber eigentlich nicht. Und mathtpmx lädt dir nicht CM, sondern Times als Schrift. lmodern wird damit gar nicht mehr geladen.

Matthias

sebi21
27-02-2006, 15:01
Wenn du deine Logdatei genau liest, sieht man das dir das Paket
microtype.sty

fehlt. Das brauchst du aber eigentlich nicht. Und mathtpmx lädt dir nicht CM, sondern Times als Schrift. lmodern wird damit gar nicht mehr geladen.

Matthias


Ich weiß, aber ich hätte trotzdem gern gesehen, was thongor mir zeigen wollte.

Wenn es wirklich keine Möglichkeit gibt, eine Schrift ohne MixTex zu installieren, werde ich lmodern sowieso nie sehen. :(

pospiech
27-02-2006, 20:13
Ich weiß, aber ich hätte trotzdem gern gesehen, was thongor mir zeigen wollte.

Und ich habe dir gesagt was du änder musst. Was daran hast du nicht verstanden ?



Wenn es wirklich keine Möglichkeit gibt, eine Schrift ohne MixTex zu installieren, werde ich lmodern sowieso nie sehen. :(

???
Was willst du damit sagen ?

Matthias

sebi21
27-02-2006, 20:41
Hallo pospiech,

Du hast mich nur darauf hingewiesen, daß das Paket microtype.sty fehlt. Ich habe das nicht als Aufforderung zum Installieren verstanden, zumal ich ohnehin nicht weiß, wie das geht.
Es ist nämlich so: Wenn bei mir ein Paket fehlt, dann installiert MixTex das beim "Kompliieren" automatisch nach. Da kommt dann eine Meldung, daß das Paket jetzt heruntergeladen wird.

Wie ich davon unabhängig ein Paket installiere, weiß ich nicht.

Was mich zur nächsten Frage führt. Kann ja sein, daß der Server, von dem MikTex herunterlädt, eine kaputte Version der Schrift hat. Dann wüßte ich gerne, wo es eine funktionierende gibt.

pospiech
27-02-2006, 21:44
Du hast mich nur darauf hingewiesen, daß das Paket microtype.sty fehlt. Ich habe das nicht als Aufforderung zum Installieren verstanden, zumal ich ohnehin nicht weiß, wie das geht.

Es war umgekehrt gemeint. Wenn du es nicht brauchst nimm es aus dem Quellcode heraus.
Und installieren tut man Pakete unter Miktex mit dem Miktex Paketmanager.



Es ist nämlich so: Wenn bei mir ein Paket fehlt, dann installiert MixTex das beim "Kompliieren" automatisch nach. Da kommt dann eine Meldung, daß das Paket jetzt heruntergeladen wird.

Richtig, das ist seit Version 2.4 so. Aber man konnte schon imemr mit dem Paketmanager Pakete manuell herunterladen. Wenn es nicht mehr geht dann wähl doch einen anderen Server zum herunterladen



Was mich zur nächsten Frage führt. Kann ja sein, daß der Server, von dem MikTex herunterlädt, eine kaputte Version der Schrift hat. Dann wüßte ich gerne, wo es eine funktionierende gibt.
Wenn das so ist, und das kann ich nicht nachvollziehen, dann solltest du das auf der Miktex mailingliste einmal ansprechen.

Matthias