Feature Suggestions ⇒ Replacement of german "umlauts"
Replacement of german "umlauts"
It would be fine if TXC can replace the umlauts to the latex code. For example ü becomes \"{u}.
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
Replacement of german "umlauts"
There is no reason to do that. The inputenc package allows to insert national characters directly in the source. Alternatives to that package are inputenx or selinput from the oberdiek bundle.
Best regards and welcome to the board
Thorsten¹
Best regards and welcome to the board
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Replacement of german "umlauts"
Hi Gaussman,
welcome to the board!
inputenc mentioned by Thorsten combined with fontenc allows better hyphenation. For Windows latin1 or latin9 is recommended, you could use
If you don't use those packages, just \"{u}, the output will contain u and dots above instead of one ü character. That's a problem for hyphenation and possibly for copy&paste of text and the search feature of pdf readers.
But if you use T1 encoding make sure that a T1 encoded font is used, like Latin Modern for example. Or install the cm-super package to get the standard Computer Modern fonts with T1 encoding.
Stefan
welcome to the board!
inputenc mentioned by Thorsten combined with fontenc allows better hyphenation. For Windows latin1 or latin9 is recommended, you could use
Code: Select all
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
But if you use T1 encoding make sure that a T1 encoded font is used, like Latin Modern for example. Or install the cm-super package to get the standard Computer Modern fonts with T1 encoding.
Stefan
LaTeX.org admin