| 
									
										
										
										
											2019-07-05 21:49:56 +02:00
										 |  |  |  | # -*- mode: org; -*- | 
					
						
							|  |  |  |  | #+AUTHOR: Lucien Cartier-Tilet | 
					
						
							|  |  |  |  | #+EMAIL: phundrak@phundrak.fr | 
					
						
							| 
									
										
										
										
											2019-06-29 11:48:36 +02:00
										 |  |  |  | #+CREATOR: Lucien Cartier-Tilet | 
					
						
							|  |  |  |  | #+LANGUAGE: fr | 
					
						
							| 
									
										
										
										
											2019-07-05 21:49:56 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-03 04:58:10 +02:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #+OPTIONS: H:4 broken_links:mark email:t ^:{} tex:dvisvgm | 
					
						
							|  |  |  |  | #+KEYWORDS: conlang idéolangue langue langues linguistique phundrak drakpa | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-11 17:30:24 +02:00
										 |  |  |  | # ### CODE ##################################################################### | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-03 04:13:42 +02:00
										 |  |  |  | #+name: setup | 
					
						
							|  |  |  |  | #+begin_src emacs-lisp :results silent :exports none | 
					
						
							|  |  |  |  |   (unless (find "per-file-class" org-latex-classes :key 'car | 
					
						
							|  |  |  |  |             :test 'equal) | 
					
						
							|  |  |  |  |     (add-to-list 'org-latex-classes | 
					
						
							|  |  |  |  |                  '("conlang" | 
					
						
							|  |  |  |  |                    "\\documentclass{book}" | 
					
						
							|  |  |  |  |                    ;; ("\\part{%s}" . "\\part*{%s}") | 
					
						
							|  |  |  |  |                    ("\\chapter{%s}" . "\\chapter*{%s}") | 
					
						
							|  |  |  |  |                    ("\\section{%s}" . "\\section*{%s}") | 
					
						
							|  |  |  |  |                    ("\\subsection{%s}" . "\\subsection*{%s}") | 
					
						
							|  |  |  |  |                    ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) | 
					
						
							|  |  |  |  | #+end_src | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 02:55:02 +02:00
										 |  |  |  | #+NAME: tree-dot | 
					
						
							| 
									
										
										
										
											2019-09-03 04:13:42 +02:00
										 |  |  |  | #+BEGIN_SRC emacs-lisp :noweb yes :exports none :eval yes | 
					
						
							| 
									
										
										
										
											2019-08-14 02:55:02 +02:00
										 |  |  |  |   (defun declare-node (node-text node-generation) | 
					
						
							|  |  |  |  |     "Declares a node in the graphviz source code. The node’s identifier will be | 
					
						
							|  |  |  |  |   ~node-generation~, and it will bear the label ~node-text~." | 
					
						
							|  |  |  |  |     (concat (number-to-string node-generation) | 
					
						
							|  |  |  |  |             "[label=\"" | 
					
						
							|  |  |  |  |             node-text | 
					
						
							|  |  |  |  |             "\"];")) | 
					
						
							| 
									
										
										
										
											2019-07-11 17:30:24 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 02:55:02 +02:00
										 |  |  |  |   (defun make-link (previous-node current-node) | 
					
						
							|  |  |  |  |     "This creates a link in the graphviz source code between the two nodes | 
					
						
							|  |  |  |  |   bearing ~previous-node~ and ~current-node~ respectively as their node | 
					
						
							|  |  |  |  |   identifier." | 
					
						
							|  |  |  |  |     (concat (number-to-string previous-node) " -- " | 
					
						
							|  |  |  |  |             (number-to-string current-node) ";")) | 
					
						
							| 
									
										
										
										
											2019-07-11 17:30:24 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 02:55:02 +02:00
										 |  |  |  |   (defun tree-to-dot-helper (tree current-generation previous-generation) | 
					
						
							|  |  |  |  |     "Helper to ~tree-to-dot~ that translates an Elisp tree with any number of | 
					
						
							|  |  |  |  |   children per node to a corresponding graphviz file that can be executed from | 
					
						
							|  |  |  |  |   dot. | 
					
						
							|  |  |  |  |   Arguments: | 
					
						
							|  |  |  |  |   - tree :: tree-to-convert | 
					
						
							|  |  |  |  |   - current-generation :: Generation number, incremented when changing from a node | 
					
						
							|  |  |  |  |        to another node from the same generation, multiplied by 10 when going from | 
					
						
							|  |  |  |  |        a node to one of its children. | 
					
						
							|  |  |  |  |   - previous-generation :: generation number from previous named node" | 
					
						
							|  |  |  |  |     (cond | 
					
						
							|  |  |  |  |      ((null tree) "") | 
					
						
							|  |  |  |  |      ((atom (car tree)) ;; '("text" () () ()) | 
					
						
							|  |  |  |  |       (concat (declare-node (car tree) current-generation) | 
					
						
							|  |  |  |  |               (make-link previous-generation current-generation) | 
					
						
							|  |  |  |  |               (tree-to-dot-helper (cdr tree) | 
					
						
							|  |  |  |  |                                   (+ 1 (* 10 current-generation)) | 
					
						
							|  |  |  |  |                                   current-generation))) | 
					
						
							|  |  |  |  |      ((listp (car tree)) ;; '(() () ()) | 
					
						
							|  |  |  |  |       (concat (tree-to-dot-helper (car tree) ;; child of current node | 
					
						
							|  |  |  |  |                                   current-generation | 
					
						
							|  |  |  |  |                                   previous-generation) | 
					
						
							|  |  |  |  |               (tree-to-dot-helper (cdr tree) | 
					
						
							|  |  |  |  |                                   (+ 1 current-generation) | 
					
						
							|  |  |  |  |                                   previous-generation))))) | 
					
						
							| 
									
										
										
										
											2019-07-11 17:30:24 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 02:55:02 +02:00
										 |  |  |  |   (defun tree-to-dot (tree) | 
					
						
							|  |  |  |  |     "Returns a graphviz’s dot compatible string representing an Elisp tree" | 
					
						
							|  |  |  |  |     (if (null tree) "" | 
					
						
							|  |  |  |  |       (concat | 
					
						
							|  |  |  |  |        "graph{node[shape=plaintext];graph[bgcolor=\"transparent\"];" | 
					
						
							|  |  |  |  |        (declare-node (car tree) 0) | 
					
						
							|  |  |  |  |        (tree-to-dot-helper (cdr tree) 1 0) | 
					
						
							|  |  |  |  |        "}"))) | 
					
						
							| 
									
										
										
										
											2019-07-11 17:30:24 +02:00
										 |  |  |  | #+END_SRC | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-03 04:13:42 +02:00
										 |  |  |  | # ### LaTeX #################################################################### | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #+LATEX_CLASS: conlang | 
					
						
							|  |  |  |  | #+LaTeX_CLASS_OPTIONS: [a4paper,twoside] | 
					
						
							| 
									
										
										
										
											2019-09-03 04:58:10 +02:00
										 |  |  |  | #+LATEX_HEADER_EXTRA: \usepackage{tocloft} \setlength{\cftchapnumwidth}{3em} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \usepackage{xltxtra,fontspec,xunicode,svg} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \usepackage[total={17cm,22cm}]{geometry} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \setromanfont{Charis SIL} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \usepackage{xcolor} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \usepackage{hyperref} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \hypersetup{colorlinks=true,linkbordercolor=red,linkcolor=blue,pdfborderstyle={/S/U/W 1}} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \usepackage{multicol} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \usepackage{indentfirst} | 
					
						
							|  |  |  |  | #+LATEX_HEADER_EXTRA: \sloppy | 
					
						
							| 
									
										
										
										
											2019-09-03 04:13:42 +02:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | # ### HTML ##################################################################### | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #+HTML_DOCTYPE: html5 | 
					
						
							| 
									
										
										
										
											2019-09-03 04:58:10 +02:00
										 |  |  |  | #+HTML_HEAD_EXTRA: <script src="https://kit.fontawesome.com/4d42d0c8c5.js"></script> | 
					
						
							|  |  |  |  | #+HTML_HEAD_EXTRA: <script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script> | 
					
						
							|  |  |  |  | #+HTML_HEAD_EXTRA: <link rel="shortcut icon" href="https://cdn.phundrak.fr/img/mahakala-128x128.png" type="img/png" media="screen" /> | 
					
						
							|  |  |  |  | #+HTML_HEAD_EXTRA: <link rel="shortcut icon" href="https://cdn.phundrak.fr/img/favicon.ico" type="image/x-icon" media="screen" /> | 
					
						
							|  |  |  |  | #+HTML_HEAD_EXTRA: <meta property="og:image" content="https://cdn.phundrak.fr/img/rich_preview.png" /> | 
					
						
							|  |  |  |  | #+HTML_HEAD_EXTRA: <meta name="twitter:card" content="summary" /> | 
					
						
							|  |  |  |  | #+HTML_HEAD_EXTRA: <meta name="twitter:site" content="@phundrak" /> | 
					
						
							|  |  |  |  | #+HTML_HEAD_EXTRA: <meta name="twitter:creator" content="@phundrak" /> | 
					
						
							| 
									
										
										
										
											2019-09-03 04:13:42 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-05 21:49:56 +02:00
										 |  |  |  | # ### MACROS ################################################################### | 
					
						
							| 
									
										
										
										
											2019-06-29 11:48:36 +02:00
										 |  |  |  | #+MACRO: newline @@latex:\hspace{0pt}\\@@ @@html:<br>@@ | 
					
						
							|  |  |  |  | #+MACRO: newpage @@latex:\newpage@@ | 
					
						
							| 
									
										
										
										
											2019-08-25 01:28:24 +02:00
										 |  |  |  | #+MACRO: latex-html @@latex:$1@@@@html:$2@@ | 
					
						
							|  |  |  |  | #+MACRO: phon @@latex:/$1/@@@@html:/$1/@@ | 
					
						
							|  |  |  |  | #+MACRO: v @@latex:\rotatebox[origin=c]{270}{$1}@@@@html:<span class=vertical>$1</span>@@ | 
					
						
							| 
									
										
										
										
											2019-07-17 14:49:52 +02:00
										 |  |  |  | #+MACRO: begin-largetable @@html:<div class="largetable">@@ | 
					
						
							|  |  |  |  | #+MACRO: end-largetable @@html:</div>@@ |