[Tex/LaTex] Kile vs WinEDT vs TexShop

kiletexshopwinedt

Question 1.
When I type \begin{document}
What keyboard shortcut can I use to so TexShop/Kile/WinEDT will automatically type the following: \end{document}

Question 2. How to do the following in WinEDT/Kile, I alrealdy know texshop

Before:
moon&456456456423423534&2342523
sun&234324&3453

After:
moon & 456456456423423534 & 2342523
sun  & 234324             & 3453

Best Answer

In WinEdt:

  1. Type } after \begin{document}, that is: type

    \begin{document}}
    

    You can also use > after \begin{something} to change the environment name to something else. For example, typing > after begin{tabbing} in the following example

    \begin{tabbing}
    ....
    \end{tabbing}
    

    prompts you for inserting a new environment name. If you insert tabular you get

    \begin{tabular}
    ....
    \end{tabular}
    

    Moreover, the string \end{{ triggers environment completion. It searches for the last opened environment and closes it.

  2. See Harish Kumar's answer to your question Which text editor to make tables scripts human readable

Related Question