From ba0a062e2557ae3aab9d3fa44b8591a536423d17 Mon Sep 17 00:00:00 2001
From: J S
The simplest raw-org method I found is the use of macros, along with a custom export-template.
-This approach is nice because it can be adaptede to any standard LaTeX template.
+
+I've found a better way. Check out the revision.
+
+This approach is nice because it can be adapted to any standard LaTeX template.
In my case, McDowell CV by Daniil Belyakov is perfect.
-At some point I'll figure out how to pass parameters into them through the default header-export mechanism.
-For now I'm comfortable with my macros.
+At some point I'll figure out how to pass parameters into them through the default header-export mechanism. For now I'm comfortable with my macros.
+
+I have spent some more time configuring, and I've figured out the appropriate settings. +
+ +(add-to-list 'org-latex-classes + '("mcdowellcv" + "\\documentclass[]{mcdowellcv} + \\usepackage{amsmath} + \\usepackage[]{multicol} + \\usepackage[hidelinks]{hyperref} + [NO-DEFAULT-PACKAGES] + [NO-PACKAGES]" + ("\\begin{cvsection}{%s}" "\\end{cvsection}") + ("\\begin{cvsubsection}{%s}" "\\end{cvsubsection}"))) ++
+Now, as I mentioned above, each section takes just one argument.
+I need a way to shoehorn multiple arguments into the cvsubsection
command.
+Fortunately, org-mode provides a subtle set of symbols to do just that:
+
+
+It took me an hour to discover this piece of syntax. +Next time I'll check the manual first!
+ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qP @@ -691,7 +741,7 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qPFingerprint:
-+SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI @@ -746,8 +796,8 @@ You can check that the latest commits are signed with my key.author@mail.com (Blog Author) https://judah.freedomland.xyz//posts/qubesos-signing-key.html -- ++ Double check your keys!
@@ -775,7 +825,7 @@ Qubes release keys and developer keys are all signed with the QMSK. Please see the Qubes website for more information. -+427F 11FD 0FAA 4B08 0123 F0IC DDFA 1A3E 3687 9494 diff --git a/posts/my-ssh-key.html b/posts/my-ssh-key.html index 3fc2262..79f6d48 100644 --- a/posts/my-ssh-key.html +++ b/posts/my-ssh-key.html @@ -63,7 +63,7 @@ If any project purports to be from me, and is not signed by this key, theKey:
-+ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qP @@ -74,7 +74,7 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qPFingerprint:
-+SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI diff --git a/posts/qubesos-signing-key.html b/posts/qubesos-signing-key.html index 53e841b..5cf6f09 100644 --- a/posts/qubesos-signing-key.html +++ b/posts/qubesos-signing-key.html @@ -52,8 +52,8 @@- -+ ++++@@ -89,7 +90,18 @@ I'm sure there's something out there, but I sure couldn't find it.Double check your keys!
@@ -81,7 +81,7 @@ Qubes release keys and developer keys are all signed with the QMSK. Please see the Qubes website for more information. -+427F 11FD 0FAA 4B08 0123 F0IC DDFA 1A3E 3687 9494 diff --git a/posts/writing-resume-org.html b/posts/writing-resume-org.html index d534334..82f7f3e 100644 --- a/posts/writing-resume-org.html +++ b/posts/writing-resume-org.html @@ -73,6 +73,7 @@2. Writing your Resume 3. Future improvements. +4. Revision The simplest raw-org method I found is the use of macros, along with a custom export-template. -This approach is nice because it can be adaptede to any standard LaTeX template. +
+ +++ + ++I've found a better way. Check out the revision. +
+ ++This approach is nice because it can be adapted to any standard LaTeX template. In my case, McDowell CV by Daniil Belyakov is perfect.
@@ -238,8 +250,46 @@ You're right, except that these commands require extra properties to specify dat-At some point I'll figure out how to pass parameters into them through the default header-export mechanism. -For now I'm comfortable with my macros. +
+At some point I'll figure out how to pass parameters into them through the default header-export mechanism. For now I'm comfortable with my macros.++diff --git a/static/img/edu-record-sample-after.svg b/static/img/edu-record-sample-after.svg new file mode 100644 index 0000000..1684015 --- /dev/null +++ b/static/img/edu-record-sample-after.svg @@ -0,0 +1,12 @@ + + +4. Revision
+++I have spent some more time configuring, and I've figured out the appropriate settings. +
+ +++ +(add-to-list 'org-latex-classes + '("mcdowellcv" + "\\documentclass[]{mcdowellcv} + \\usepackage{amsmath} + \\usepackage[]{multicol} + \\usepackage[hidelinks]{hyperref} + [NO-DEFAULT-PACKAGES] + [NO-PACKAGES]" + ("\\begin{cvsection}{%s}" "\\end{cvsection}") + ("\\begin{cvsubsection}{%s}" "\\end{cvsubsection}"))) +++Now, as I mentioned above, each section takes just one argument. +I need a way to shoehorn multiple arguments into the
+ + + +cvsubsection
command. +Fortunately, org-mode provides a subtle set of symbols to do just that: + ++It took me an hour to discover this piece of syntax. +Next time I'll check the manual first!