summaryrefslogtreecommitdiff
path: root/snippets
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-01-06 23:52:31 -0500
committerKyle Meyer <kyle@kyleam.com>2016-01-06 23:52:31 -0500
commit9bfea062839fefd1e00dc1ecfa32a015c11d1367 (patch)
treed89a220d45ee4817c671f7d8fe1cd0ac4db659b6 /snippets
parentbae8ef1b53d4568e7bb158c83f1fd39563737918 (diff)
downloademacs.d-9bfea062839fefd1e00dc1ecfa32a015c11d1367.tar.gz
Add snippets for star latex-mode headers
Diffstat (limited to 'snippets')
-rw-r--r--snippets/latex-mode/paragraph-star5
-rw-r--r--snippets/latex-mode/section-star5
-rw-r--r--snippets/latex-mode/subsection-star5
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