-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorg-mode.tex
More file actions
142 lines (139 loc) · 3.96 KB
/
Copy pathorg-mode.tex
File metadata and controls
142 lines (139 loc) · 3.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
% Created 2018-08-19 Sun 16:13
% Intended LaTeX compiler: pdflatex
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{grffile}
\usepackage{longtable}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage{hyperref}
\author{ryan}
\date{\today}
\title{A Quick Introduction to Org-mode}
\hypersetup{
pdfauthor={ryan},
pdftitle={A Quick Introduction to Org-mode},
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 25.2.2 (Org mode 9.1.13)},
pdflang={English}}
\begin{document}
\maketitle
\tableofcontents
\section*{what is org-mode ?}
\label{sec:orgdec7fb4}
\begin{itemize}
\item It is a mode within emacs that started its life as an outliner .
\item org mode is usually used as a markup language to write notes ,to do lists , and much more.
\item It is an example of an exocortex , which is something to rely on other than your brain to remember things.
\end{itemize}
\section*{org-mode features}
\label{sec:org53d0999}
\begin{itemize}
\item Easy outlining with \texttt{tab} folding to maximize focus on the task.
\item Task management \& to-do lists with different states
\begin{itemize}
\item \texttt{t} to cycle through the different states of the list item.
\end{itemize}
\end{itemize}
\subsubsection*{To do lists must be headers}
\label{sec:org4e9d305}
\begin{itemize}
\item {\bfseries\sffamily DONE} task uno
\label{sec:orgf62d7a0}
\item {\bfseries\sffamily TODO} 2nd task
\label{sec:org7b27fd7}
\item {\bfseries\sffamily TODO} 3rd task
\label{sec:org6842279}
\end{itemize}
\subsubsection*{Progress indicators [2/3]}
\label{sec:orge418c8f}
\begin{itemize}
\item {\bfseries\sffamily TODO} barber
\label{sec:orga622b64}
\item {\bfseries\sffamily DONE} walk dog
\label{sec:org72b6379}
\item {\bfseries\sffamily DONE} launch
\label{sec:org0999887}
\end{itemize}
\subsubsection*{Percentage indicators [75\%]}
\label{sec:org4d21d18}
\begin{itemize}
\item {\bfseries\sffamily DONE} wash car
\label{sec:org8431209}
\item {\bfseries\sffamily DONE} cook dinner
\label{sec:org9f8fb50}
\item {\bfseries\sffamily TODO} run
\label{sec:org137f0b3}
\item {\bfseries\sffamily DONE} shower
\label{sec:org64102ee}
\end{itemize}
\section*{Markup}
\label{sec:org851b625}
\subsubsection*{Text Transformations}
\label{sec:org0680bed}
\begin{itemize}
\item \emph{italic} text
\item \textbf{bold} text
\item \texttt{verbatim}
\item \sout{stroke through} text
\end{itemize}
\subsubsection*{Meta Data}
\label{sec:orga16078f}
\begin{itemize}
\item Title
\item Options [disable/enable] features
\end{itemize}
\subsubsection*{Links \texttt{[[address][description]]}}
\label{sec:orga48f3cb}
\begin{itemize}
\item C-c + C-l to create a link automatically
\item HTTP links
\href{https://github.com//ryanLeulmi}{my github}
\item Local Links to files / todos / files / etc..
\href{file:///home/ryan/.spacemacs}{dotspacemacs}
\item C-c + C-o to open a local link in a new buffer
\end{itemize}
\subsubsection*{Source Code}
\label{sec:org8433b50}
\begin{itemize}
\item \texttt{<s + tab} to create a code block
\item \texttt{C-c + '} to open a code block in a new buffer with it's mode
\end{itemize}
\begin{verbatim}
export PATH="`yarn global bin`:$PATH"
\end{verbatim}
\subsubsection*{Raw HTML export}
\label{sec:org69594fa}
\begin{verbatim}
#+BEGIN_EXPORT html
<h3> RAW HTML </h3>
#+END_EXPORT
\end{verbatim}
\subsubsection*{Smarter Tables}
\label{sec:org9ccc183}
\begin{center}
\begin{tabular}{lll}
Student \# & Email & Password\\
\hline
ryan & ryanleulmi@gmail.com & 1234\\
student & another one & asd21\\
\end{tabular}
\end{center}
\section*{Export to other formats from the same source}
\label{sec:org500ad24}
\begin{itemize}
\item C-c + C-e
\item twitter bootstrap \texttt{ox-twbs}
\item html , pdf , markdown \texttt{ox-gfm}
\item \texttt{org-export-backends} to manage your export backends.
\item \texttt{org-file-apps} to change which apps your export backends use.
\end{itemize}
\end{document}