LaTeX Accents
Decode and encode letters with accents in LaTeX
Details
Installs
- Total 3K
- Win 1K
- Mac 1K
- Linux 782
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
LaTeXAccents for Sublime Text 2 and 3
This is a plugin for Sublime Text 2 and Sublime Text 3. It decode and encode letters with accents in LaTeX files.
Installation
Using Package Control, install “LaTeX Accents”.
Or manualy:
1a. open the Sublime Text Packages folder
- for ST2
- OS X: ~/Library/Application Support/Sublime Text 2/Packages/
- Windows: %APPDATA%/Sublime Text 2/Packages/
- Linux: ~/.Sublime Text 2/Packages/
- for ST3
- OS X: ~/Library/Application Support/Sublime Text 3/Data/Packages/
- Windows: %programfiles%/Sublime Text 3/Data/Packages/
- Linux: ~/.Sublime Text 3/Data/Packages/
- clone this repo (
git clone git://github.com/kpym/SublimeLaTeXAccents LaTeXAccents
).
How to use
To transform all letters with accents (like é,à,î, …) to LaTeX accents (\'e, `a, \^\i, … ) :
- open Command Pannel (
Ctrl+Shift+P
by default); - select “LaTeXAccents: Encode accents” ( hint : you can type something shorter like “ltxenc”).
To transform all letters with LaTeX accents (\'e, `a, \^\i, …) to letters with accents (like é,à,î, …):
- open Command Pannel (
Ctrl+Shift+P
by default); - select “LaTeXAccents: Decode accents” ( hint : you can type something shorter like “ltxdec” )
To remove accents from all letters (letters é,à,î,… became e,a,i,… ) :
- open Command Pannel (
Ctrl+Shift+P
by default); - select “LaTeXAccents: Remove accents” ( hint : you can type something shorter like “ltxrmv”).
Hint : If your file contains accents you should :
- save the file using appropriate encoding (for example
ISO 8859-1
orUTF-8
); - use :
\usepackage[...]{inputenc}
with the corresponding encoding (for examplelatin
orutf8
}.
Commands
encode_latex_accents
: Encode all letters with accents to latex accents.decode_latex_accents
: Decode all letters with latex accents to 'normal' letters with accents.remove_accents
: Remove all accents from 'normal' letters with accents.