General ⇒ If i type " i get "' what can i do to change that?
If i type " i get "' what can i do to change that?
iam new to texniccenter (i used winshell for a long time but had to change because of a feature which i just could get to work with texniccenter) and apart from one thing it works without problems.
I iam writing much in german, which means a lot of umlauts (ü,ä,ö), to do this i have to type:
\"o for ö
\"u for ü
and
\"a for ä
this works without problems, but it is a bit more complicated in texniccenter than it was in winshell, because of everytime i type in the " symbol (' " ') the editor write these two symbols: "'
so i have to remove the: ' everytime.
Is there a way to teach the editor to not append this: ' symbol when typing in a: " ?
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
If i type " i get "' what can i do to change that?
The easiest way is to use the right input encoding for your document. This lets you input the characters as you find them on your keyboard. For this you have the choice between inputenc and selinput (from the oberdiek bundle). I prefer the latter one.
Code: Select all
\documentclass[ngerman]{scrartcl}
\usepackage{fixltx2e}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{%
adierisis={ä},
germandbls={ß},
Euro={€}
}
\usepackage{babel}
\begin{document}
Falsches Üben von Xylophonmusik quält jeden größeren Zwerg.
\end{document}
Code: Select all
texdoc selinput
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10