ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

La​Te​X Accents

by kpym ALL

Decode and encode letters with accents in LaTeX

Labels latex

Details

  • 2018.04.02
  • github.​com
  • github.​com
  • 7 years ago
  • 3 hours ago
  • 13 years ago

Installs

  • Total 3K
  • Win 1K
  • Mac 1K
  • Linux 795
Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13 Aug 12 Aug 11 Aug 10 Aug 9 Aug 8 Aug 7 Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8
Windows 0 0 0 0 0 0 0 1 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 0 0 0
Mac 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Linux 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 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/
  1. 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, … ) :

  1. open Command Pannel (Ctrl+Shift+P by default);
  2. 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 é,à,î, …):

  1. open Command Pannel (Ctrl+Shift+P by default);
  2. select “LaTeXAccents: Decode accents” ( hint : you can type something shorter like “ltxdec” )

To remove accents from all letters (letters é,à,î,… became e,a,i,… ) :

  1. open Command Pannel (Ctrl+Shift+P by default);
  2. select “LaTeXAccents: Remove accents” ( hint : you can type something shorter like “ltxrmv”).

Hint : If your file contains accents you should :

  1. save the file using appropriate encoding (for example ISO 8859-1 or UTF-8);
  2. use : \usepackage[...]{inputenc} with the corresponding encoding (for example latin or utf8}.

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.