I've been using LaTeX for a few weeks now, with TeXworks, and have found it quite frustrating.
I'm running MiKTeX 2.8 on Windows 7 x64 with TeXworks 0.3.
Reasons why I find TeX frustrating:
- Very difficult to install packages, and get them running in my code (sometimes impossible, i.e. with
xy-pic) - When I write code, it takes a while (dollar signs everywhere)
- I also end up using
\\[2mm]all over the place
Quick related question, how do I create macros? — Basically I want to replace $\rightarrow$ with \im (implies) etc. It would also be helpful if I could define keyboard shortcuts for this type of thing (Alt+A = $\forall%, Alt+E = $\exists$, Alt+. = $\rightarrow$, Alt+, = $\leftrightarrow$ etc.).
So which TeX, LaTeX or other package would you recommend I use for typesetting, with which IDE/text-editor?
Purpose: For typing up Discrete Mathematics Lectures (Graph Theory, Logic Theory etc.)
:). Both of your questions actually have been asked here already. I'll write up an answer with links to the respective questions. – doncherry Aug 21 '11 at 10:25\newcommand{\imp}{$\rightarrow$}in the preamble. Shortcuts are either customizable in your editor, so have a look at the TexWorks manual, or consider using Autohotkey, it can assign anything to any key combo – Tom Bombadil Aug 21 '11 at 10:36$\forall$, etc., I'll ask: are you putting a dollar sign around each character in mathematics? You ought to be doing something more like$\forall\epsilon\exists\delta:\epsilon < \delta$, or the like. If you have a long list of equations, or a chained equation, you might want to be using displayed math environments instead, e.g. thealignorgatherenvironments provided byamsmath.sty. (If these are not your problems, my apologies.) – Niel de Beaudrap Aug 21 '11 at 10:54