diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-01-06 23:52:31 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-01-06 23:52:31 -0500 |
commit | 9bfea062839fefd1e00dc1ecfa32a015c11d1367 (patch) | |
tree | d89a220d45ee4817c671f7d8fe1cd0ac4db659b6 /snippets | |
parent | bae8ef1b53d4568e7bb158c83f1fd39563737918 (diff) | |
download | emacs.d-9bfea062839fefd1e00dc1ecfa32a015c11d1367.tar.gz |
Add snippets for star latex-mode headers
Diffstat (limited to 'snippets')
-rw-r--r-- | snippets/latex-mode/paragraph-star | 5 | ||||
-rw-r--r-- | snippets/latex-mode/section-star | 5 | ||||
-rw-r--r-- | snippets/latex-mode/subsection-star | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/snippets/latex-mode/paragraph-star b/snippets/latex-mode/paragraph-star new file mode 100644 index 0000000..3f00208 --- /dev/null +++ b/snippets/latex-mode/paragraph-star @@ -0,0 +1,5 @@ +# -*- mode: snippet -*- +# key: ps +# -- +\paragraph*{$1} +$0
\ No newline at end of file diff --git a/snippets/latex-mode/section-star b/snippets/latex-mode/section-star new file mode 100644 index 0000000..9ff6437 --- /dev/null +++ b/snippets/latex-mode/section-star @@ -0,0 +1,5 @@ +# -*- mode: snippet -*- +# key: ss +# -- +\section*{$1} +$0
\ No newline at end of file diff --git a/snippets/latex-mode/subsection-star b/snippets/latex-mode/subsection-star new file mode 100644 index 0000000..969bf19 --- /dev/null +++ b/snippets/latex-mode/subsection-star @@ -0,0 +1,5 @@ +# -*- mode: snippet -*- +# key: sbs +# -- +\subsection*{$1} +$0
\ No newline at end of file |