mrob95 on master
Deprecation notice (compare)
mrob95 on master
Deprecation notice (compare)
mrob95 on master
Update README.md (compare)
mrob95 on master
Move logging set up above drago… (compare)
mrob95 on texmaker
Add basic TeXMaker support (compare)
mrob95 on master
Create requirements.txt (compare)
mrob95 on master
Create install.bat (compare)
mrob95 on master
change to \(\) for inline math,… add equation* and align* update docs and 2 more (compare)
mrob95 on master
mrob95 on breathe
Transition sublime and template Update dependencies Add install script and 2 more (compare)
mrob95 on master
Create LICENSE (compare)
mrob95 on master
Add core context (compare)
mrob95 on master
Add install script (compare)
mrob95 on master
Update dependencies (compare)
mrob95 on languages
Improve formatting (compare)
@mrob95 I just pulled down the latest version of master, and the latex and latex_maths modules are not loading correctly. I'm seeing error messages
Ignoring rule 'latex'. Failed to load with:
Duplicate keys! (line 169 column 1 char 5622)
Ignoring rule 'latex_maths'. Failed to load with:
Duplicate keys! (line 169 column 1 char 5622)
I'm going to go take a look at the file and see if I can identify/fix the problem.
add_words
vocabulary list be a dictionary that has spoken and written forms. I don't know how that works,I think Natlink has a way. Caspark mentioned this (pseudo-?)code on the Talents slack. Not sure does the spoken forms:import natlink
def add_words(words):
for word in words:
known_word = natlink.getWordInfo(word)
if known_word is None:
natlink.addWord(word)
np, if you need more flexibility for commands then dragonfly is not at all hard to learn see e.g.
https://github.com/mrob95/MR-caster/blob/master/caster/apps/chrome.py
@mrob95 I'm hoping maybe you've seen this error message before and can point me in the right direction. Here's the sequence of events:
```
Any advice?
@alexboche pretty much what @esc123 said. In scientific notebook you can go into a permanent math mode where everything you type is assumed to be math, regardless of new lines et cetera, whereas LyX requires you to constantly reset the mode and it is easy to accidentally jump out by going to the end of the line or w/e. Also in SN you can select and manipulate blocks of math easily. Since I mostly used it for bashing out homework assignments or completing exams the ease of getting stuff down in SN easily outweighed its lack of complex formatting options.
I think the main use case for LyX is as an alternative to raw LaTeX for technical writing, but since I know LaTeX pretty well and am comfortable in a text editor I don't really have a need for it.
btw if you are considering trying SN, then I would definitely recommend version 5.5 over version 6 if you can get it. Version 6 is much closer to the behaviour of LyX and I really think they have made it worse.
$\Omega _{k}$
in source are nonstandard from a style standpoint. In case it's not clear, $\Omega _{k}$
and $\Omega_{k}$
compile to the same typeset result, since LaTeX ignores most whitespace characters in math mode.