-
Notifications
You must be signed in to change notification settings - Fork 0
/
latex.csv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 112.
1711 lines (1691 loc) · 67.8 KB
/
latex.csv
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
list font sizes in latex,"tiny, scriptsize, footnotesize, small, normal, large, Large, huge, Huge"
index key, \index{ }
insert 10 simple rules,"\begin{verbatim}
\section{Introduction}
\section{Rule 1: <capitalize> }
\section{Rule 2: <capitalize> }
\section{Rule 3: <capitalize> }
\section{Rule 4: <capitalize> }
\section{Rule 5: <capitalize> }
\section{Rule 6: <capitalize> }
\section{Rule 7: <capitalize> }
\section{Rule 8: <capitalize> }
\section{Rule 9: <capitalize> }
\section{Rule 10: <capitalize> }
\section{Conclusions}
\end{verbatim}"
insert 3 by 3 table,"% Add this package to the Preamble \usepackage{booktabs}
\begin{table}[htp] % (fold)
\caption{Python script to find lost bytes.}
\index{copying and pasting code!lost bytes}
\label{tab:label}
\begin{center}
\begin{tabular}{lcc}
% \begin{tabular}{l p{12cm}} % use p when you have to control the column width
\toprule
&
LongHeader2 &
LongHeader3 \\
\multicolumn{1}{c}{Parameters} &
\multicolumn{1}{c}{(unit1)} &
\multicolumn{1}{c}{(unit2)} \\ \midrule
Item1 & X11 & X12 \\
X11 & X11 & X12 \\
X12 & X11 & X12 \\ \bottomrule
\end{tabular}
\end{center}
\end{table}
% table label (end)
"
insert 3x3 table,"% Add this package to the Preamble \usepackage{booktabs}
\begin{table}[htp] % (fold)
\caption{Python script to find lost bytes.}
\index{copying and pasting code!lost bytes}
\label{tab:label}
\begin{center}
\begin{tabular}{lcc}
% \begin{tabular}{l p{12cm}} % use p when you have to control the column width
\toprule
&
LongHeader2 &
LongHeader3 \\
\multicolumn{1}{c}{Parameters} &
\multicolumn{1}{c}{(unit1)} &
\multicolumn{1}{c}{(unit2)} \\ \midrule
Item1 & X11 & X12 \\
X11 & X11 & X12 \\
X12 & X11 & X12 \\ \bottomrule
\end{tabular}
\end{center}
\end{table}
% table label (end)"
insert 4x2 table,"% Table template
% needs \usepackage{booktabs}
\begin{table}[htp]
\caption{This is a test.}
\label{two columns}
\begin{center}
\begin{tabular}{ll}
% \begin{tabular}{l p{12cm}} % use p when you have to control the column width
\toprule
LongHeader1 & MediumHeaderX \\
\multicolumn{1}{c}{(unit1)} &
\multicolumn{1}{c}{(unit2)} \\ \midrule
Item1 & X1 \\
Item2 & X2 \\
Item1 & X1 \\
Item2 & X2 \\ \bottomrule
\end{tabular}
\end{center}
\end{table}"
insert 4x4 table,"% Add this package to the Preamble \usepackage{booktabs}
\begin{table}[htp] % (fold)
\caption{Python script to find lost bytes.}
\index{copying and pasting code!lost bytes}
\label{tab:label}
\begin{center}
\begin{tabular}{lccc}
% \begin{tabular}{l p{12cm}} % use p when you have to control the column width
\toprule
&
LongHeader2 &
LongHeader3 &
LongHeader4 \\
\multicolumn{1}{l}{Parameters} &
\multicolumn{1}{c}{(unit1)} &
\multicolumn{1}{c}{(unit2)} &
\multicolumn{1}{c}{(unit3)} \\ \midrule
Item1 & X11 & X12 & X13 \\
Item2 & X21 & X22 & X23 \\
Item3 & X31 & X32 & X33 \\
Item4 & X41 & X42 & X43 \\ \bottomrule
\end{tabular}
\end{center}
\end{table}
% table label (end)"
insert affiliations,"\aff[a]{Department of Biochemsitry and Physiology, University of Oklahoma Health Sciences Center, Oklahoma City, Oklahoma 73104 \country{USA}}
\aff[b]{Laboratory of Biomolecular Structure and Function, University of Oklahoma Health Sciences Center, Oklahoma City, Oklahoma 73104}
\aff[c]{Stephenson Cancer Center, University of Oklahoma Health Sciences Center, Oklahoma City, Oklahoma 73104}"
insert chapter head,"%!TEX root = ../main.tex
\chapter{Replace}
\label{AnalysisofVariance} % Always give a unique label
\chaptermark{AnalysisofVariance}
\index{Analysis of Variance}
\section{Introduction}"
insert check mark,[\checkmark]
insert checkbox,[\checkmark]
insert checked box,[\checkmark]
insert description list,"\begin{description}
\item [] <capitalize>
\item [] <capitalize>
\item [] <capitalize>
\item [] <capitalize>
\end{description}"
insert e-mail address,blaine-mooers@ouhsc.edu
insert emacs index key,\index{Emacs}
insert enumerated list,"\begin{enumerate}
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\end{enumerate}"
insert equation,"\begin{equation}
\label{eq:XXXXX}
\end{equation}"
insert equation with caption,"% Add the commented lines to Premable. Enables use of captions and thereby making a list of equations.
%\usepackage{float}
%\floatstyle{plain}
% How is this used??
%\newfloat{myequation}{H}{eq}[section]
%\floatname{myequation}{Equation}
\begin{my equation}[!htps]
\caption{}
\index{}
\label{}
X = A +B
\end{myequation}
"
insert equations for hemihedry,"\begin{equation}
\begin{aligned}
& I_{\mathrm{obs}}\left(\mathbf{h}_1\right)=(1-\alpha) I\left(\mathbf{h}_1\right)+\alpha I\left(\mathbf{h}_2\right), \\
& I_{\text {obs }}\left(\mathbf{h}_2\right)=\alpha I\left(\mathbf{h}_1\right)+(1-\alpha) I\left(\mathbf{h}_2\right),
\end{aligned}
\end{equation}"
insert figure,"\label{fig:test}
\begin{figure}[htp]
\begin{center}
\includegraphics[width=0.99\textwidth]{./Content/Figures/testpng}
\end{center}
\end{figure}
"
insert footnote with url,\footnote{\url{}}.
insert for all,\footnote{\url{ }}.
insert funding,"R01 CA242845, R01 AI088011
NIH: P30 CA225520 (PI: R. Mannel); P20GM103640 and P30GM145423 (PI: A. West)
OCAST HR20-002;
PHF Team Science Grant"
insert funding slide,"\subsection{Acknowledgements}
\begin{frame}
\frametitle{Acknowledgements}
\Large{
% \begin{itemize}[font=$\bullet$\scshape\bfseries]
% \item Nathan Shock Data Science Workshop
% \end{itemize}
%\vspace{2mm}
Funding:
\begin{itemize}[font=$\bullet$\scshape\bfseries]
\item NIH: R01 CA242845, R01 AI088011
\item NIH: P30 CA225520 (PI: R. Mannel); P20GM103640 and P30GM145423 (PI: A. West)
\item OCAST HR20-002;
\item PHF Team Science Grant
\end{itemize}
}
\end{frame}
"
insert furl,\footnote{\url{ }}
insert hypotheses for methods papers,"First, it is possible to have a hypothesis about methodology because the development of methodology is driven by the belief that method A will be better than method B.
Second, the development of the new method will enable me to do something that was impossible to study satisfactory before before.
Third, this new method is just as precise as old method but it is less expensive.
"
insert in text code,\mintinline{bash}{}
insert index,\index{Replace}
insert subsection and index,"\subsection{Replace}
\index{Replace}"
insert index and subsubsection,"\subsubsection{Replace}
\index{Replace}"
insert index key,\index{Replace}
insert item,<newline> \item <capitalize>
insert item checkbox,\item [\checkmark]
insert itemized list,"\begin{itemize}
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\end{itemize}
"
insert long itemized list,"\begin{itemize}
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\item <capitalize>
\end{itemize}"
insert mint in line,"\mintinline{bash}{}
"
insert palm table,"\begin{table}[htp]
\caption{Record for \today.}
\index{Pomodoro!activity inventory}
\label{tab:activity}
%p{0.678\textwidth}
\begin{tabular}{l l l l l l}
\toprule
Date &
ProjectID &
Description of Activity &
Est. &
Actual &
Diff. \\
\midrule
2023 September 5 & & Revise personal statement in Boiosketch for Ramesh & 4 & & \\
\bottomrule
\end{tabular}
\end{table}"
insert quote,"\begin{quote}
Replace
\end{quote}"
insert retro hypothesis,These data presented a unique opportunity for us to test the hypothesis that ....
insert rule,<newline><insertspace><insertspace> \item Rule ##:<insertspace><capitalize>
insert sayre's equation,"$$F_{hkl}=\sum_{h'k'l'} F_{h'k'l'}F_{h-h',k-k',l-l'}$$"
insert section,\section{<date>}
insert short palm table,"\begin{table}[htp] % (fold)
\caption{Pomorodo record for \today}
\label{tab:}
\begin{center}
\begin{tabular}{llcc}
\hline
\multicolumn{1}{p{2.25cm}}{Project ID} & \multicolumn{1}{p{9.5cm}}{Task} & \multicolumn{1}{p{1.5cm}}{Planned Poms} & \multicolumn{1}{p{1.5cm}}{Used Poms}\\
\hline
& & & \\
& & & \\
& & & \\
& & & \\
& & & \\
\hline
\end{tabular}
\end{center}
\end{table}
"
insert slide subsection,\subsection{slide XX: <capitalize>
insert slide with 7x2 table,"% Slide timestamps
\begin{frame}
\frametitle{Open external text editor}
\begin{table}
\caption{Shortcuts to text editors outside of PyMOL.}
\begin{center}
\begin{tabular}{p{3.5cm} p{3.5cm}}
\toprule
Shortcut & Editor \\
\midrule
atom & Atom \\
mate & TextMate \\
vim & vim\\
emacs & emacs\\
npp & notepad++ \\
gedit & gedit \\
code & Visual Studio Code\\
\bottomrule
\end{tabular}
\end{center}
\end{table}
%\exampleCodeC
% \begin{center}
% \includegraphics[scale=0.335]{./Figures/saveFileTimeStamp.png}
% \end{center}
\end{frame}
\note{While on the subject of files, PyMOL has a primitive built-in text editor.
You access it by selecting file $\rightarrow$ edit pymolrc.
The top menu bar on the Mac is replaced with a short menu bar.
The File pulldown allows us to save the file to a different filename while the syntax pulldown changes the lexer or syntax highlighter to other file types like a Python script.}
"
insert slide with 8x4 table,"% Slide timestamps
\begin{frame}
\frametitle{Compatible computer environments}
\begin{table}
%\caption{Shortcuts to text editors outside of PyMOL.}
\begin{center}
\begin{tabular}{p{3.5cm} p{2.5cm} p{2.5cm} p{2.5cm}}
\toprule
Environment & Voice-In & Serenade & Talon \\
\midrule
Chrome browser & 1 & 1 & 1 \\
Overleaf & 1 & 0 & 1 \\
750words.com & 1 & 0 & 1 \\
iterm2 & 0 & 1 & 1 \\
Jupyter code cell & 0 & 1 & 1 \\
Jupyter markdown cell & 1 & 0 & 1 \\
posit (RStudio) & 0 & 1 & 1 \\
Pluto & 1 & 1 & 1 \\
\bottomrule
\end{tabular}
\end{center}
\end{table}
\end{frame}
\note{ I use one here to indicate a positive response or capability.
I used 0 to indicate that the given software does not work in that corresponding environment.
}"
insert slide with bullet list,"\subsection{Replace}
\begin{frame}
\frametitle{Replace}
\Large{
\begin{itemize}[font=$\bullet$\scshape\bfseries]
\item NIH: R01 CA242845, R01 AI088011
\item NIH: P30 CA225520 (PI: R. Mannel); P20GM103640 and P30GM145423 (PI: A. West)
\item OCAST HR20-002;
\item PHF Team Science Grant
\end{itemize}
}
\end{frame}"
insert slide with code,"\defverbatim[colored]\exampleCodeA{
\Large{
\begin{bashcode}
spse 3fao
ls 3fao*
3faoy2019m07d18h08m33s30.pse
\end{bashcode}
}
}
\defverbatim[colored]\exampleCodeB{
\Large{
\begin{pythoncode}
spng
spdb
\end{pythoncode}
}
}
% Slide timestamps
\begin{frame}
\frametitle{Saving file with time stamp}
\exampleCodeA
\pause
Shortcuts for all other file types:
\exampleCodeB
% \begin{center}
% \includegraphics[scale=0.335]{./Figures/saveFileTimeStamp.png}
% \end{center}
\end{frame}
\note{While on the subject of files, PyMOL has a primitive built-in text editor.
You access it by selecting file $\rightarrow$ edit pymolrc.
The top menu bar on the Mac is replaced with a short menu bar.
The File pulldown allows us to save the file to a different filename while the syntax pulldown changes the lexer or syntax highlighter to other file types like a Python script.}
"
insert slide with figure,"\subsection{Voice-In custom command editor}
\begin{frame}
\frametitle{Voice-In Plus action commands}
\begin{center}
\includegraphics[width=0.6\textwidth]{./Figures/customCommands.png}
\end{center}
\end{frame}
\note{The main}"
insert slide with paused list,"% \subsubsection{ Slide 7 }
\begin{frame}
\frametitle{shortcuts $\equiv$ Python functions}
\Large{
\begin{itemize}
\pause
\item Add styles of molecular representation
\pause
\item Address missing features of PyMOL \\
(e.g., version control)
\pause
\item Open external programs \\
(e.g., text editors, image editors, MS Word)
\pause
\item Utilize other Python modules\\
(e.g. webrowser, beautifulSoup4)
% \pause
% \item Code in docstring $rightarrow$ gateway to scripting
\end{itemize}
}
\end{frame}
\note{}
"
insert slide with text left of figure,"\begin{frame}
\frametitle{Five categories by side chain properties}
\begin{columns}[T]
\begin{column}{.5\textwidth}
\begin{block}{\begin{itemize}
\item 7 nonpolar, aliphatic
\item 3 aromatic
\item 5 polar, uncharged
\item 3 postively charged
\item 2 negatively charged
\end{itemize}}
% Your text here
\end{block}
\end{column}
\begin{column}{.5\textwidth}
\begin{block}{Side chain atom names}
% Your image included here
\includegraphics[width=0.99\textwidth]{./lecture1figs/GreekLetterSideChains.png}
\end{block}
\end{column}
\end{columns}
\end{frame}"
insert slideshow preamble,"% !TEX TS-program = pdflatex --shell-escape
%\documentclass[handout]{beamer} %slides+notes only
%\documentclass[10pt,t]{beamer} %slides only
% The laulatex is being updated. The following RequirePackage line is needed for now.
\documentclass[aspectratio=169]{beamer}
\RequirePackage{luatex85}
\usepackage{pgfpages}
\usepackage{moresize}
\usetheme{default}
\beamertemplatenavigationsymbolsempty
\hypersetup{pdfpagemode=UseNone} % don't show bookmarks on initial view
%tables
\usepackage{booktabs}% http://ctan.org/pkg/booktabs
% font
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{minted}
\usepackage{fix-cm}
\usepackage{fontspec}
\usepackage{gensymb}
\usepackage{tabularx,booktabs}
\newminted{python}{fontsize=\normalsize,
linenos=false,
numbersep=8pt,
gobble=4,
breaklines,
frame=lines,
bgcolor=bgpython,
framesep=3mm}
\newminted{bash}{fontsize=\normalsize,
linenos=false,
numbersep=8pt,
breaklines,
gobble=4,
frame=lines,
bgcolor=bgbash,
framesep=3mm}
\definecolor{bgpython}{rgb}{0.95,0.95,0.95}
\definecolor{bgbash}{rgb}{0.95,0.85,0.75}
\setsansfont{TeX Gyre Heros}
\setbeamerfont{note page}{family*=pplx,size=\footnotesize} % Palatino for notes
% ""TeX Gyre Heros can be used as a replacement for Helvetica""
% In Unix, unzip the following into ~/.fonts
% In Mac, unzip it, double-click the .otf files, and install using ""FontBook""
% http://www.gust.org.pl/projects/e-foundry/tex-gyre/heros/qhv2.004otf.zip
% Center the title and increase its size
\setbeamertemplate{frametitle}[default][center]
\setbeamerfont{frametitle}{size=\huge}
% named colors
\definecolor{offwhite}{RGB}{249,242,255}
\definecolor{foreground}{RGB}{25,25,25}
\definecolor{background}{RGB}{255,255,255}
\definecolor{title}{RGB}{100,0,0}
\definecolor{gray}{RGB}{155,155,155}
\definecolor{subtitle}{RGB}{50,0,0}
\definecolor{hilight}{RGB}{102,255,204}
\definecolor{vhilight}{RGB}{255,111,207}
\definecolor{lolight}{RGB}{155,155,155}
%\definecolor{green}{RGB}{125,250,125}
% use those colors
\setbeamercolor{titlelike}{fg=title}
\setbeamercolor{subtitle}{fg=subtitle}
\setbeamercolor{institute}{fg=gray}
\setbeamercolor{normal text}{fg=foreground,bg=background}
\setbeamercolor{item}{fg=foreground} % color of bullets
\setbeamercolor{subitem}{fg=gray}
\setbeamercolor{itemize/enumerate subbody}{fg=gray}
\setbeamertemplate{itemize subitem}{{\textendash}}
\setbeamerfont{itemize/enumerate subbody}{size=\footnotesize}
\setbeamerfont{itemize/enumerate subitem}{size=\footnotesize}
% page number
\setbeamertemplate{footline}{%
\raisebox{5pt}{\makebox[\paperwidth]{\hfill\makebox[20pt]{\color{gray}
\scriptsize\insertframenumber}}}\hspace*{5pt}}
% add a bit of space at the top of the notes page
\addtobeamertemplate{note page}{\setlength{\parskip}{12pt}}
% a few macros
\newcommand{\bi}{\begin{itemize}}
\newcommand{\ei}{\end{itemize}}
\newcommand{\ig}{\includegraphics}
\newcommand{\subt}[1]{{\footnotesize \color{subtitle} {#1}}}
\usepackage{latexsym} % for squares for the check-list environment
\newenvironment{checklist}{%
\begin{list}{}{}% whatever you want the list to be
\let\olditem\item
\renewcommand\item{\olditem[$\Box$] }
}{%
\end{list}
}
\title{A Library of Shortcuts For Faster Image Making with PyMOL}
\author{\textbf{Blaine Mooers, PhD}}
\institute{{Department of Biochemistry \& Molecular Biology}\\[2pt]{University of Oklahoma Health Sciences Center, Oklahoma City} }
% to hide auto date,use \date{}
\date{ACA Annual Meeting \\Covington, KY\\ 23 July 2019}
\begin{document}
% title slide
{
\setbeamertemplate{footline}{} % no page number here
\frame{
\titlepage
\note{
} } }
"
insert split equation,"\begin{equation}\label{eq:XXXXX}
\begin{split}
A &= B
&= B
\end{split}
\end{equation}
"
insert stanley factor,$\left\langle I^2\right\rangle /\langle I\rangle^2$
insert stanley ratio,$\langle F\rangle^2 /\left\langle F^2\right\rangle$
insert sub sub section,\subsubsection{ReplaceMe}
insert subsection,\subsection{Replace}
insert subsubsection,\subsubsection{Replace}
insert ten rules,"\begin{itemize}
\item Rule One: <capitalize>
\item Rule Two: <capitalize>
\item Rule Three: <capitalize>
\item Rule Four: <capitalize>
\item Rule Five: <capitalize>
\item Rule Six: <capitalize>
\item Rule Seven: <capitalize>
\item Rule Eight:<capitalize>
\item Rule Nine: <capitalize>
\item Rule Ten:<capitalize>
\end{itemize}"
insert the emacs philosopher,Protesilaos Stavrou
insert tiny note, \note{\tiny{<capitalize>}}
insert title slide,"% title slide
\section{Title slide}
{
\setbeamertemplate{footline}{} % no page number here
\frame{
\titlepage
\note{
} } }"
insert to do today,"\begin{table}[htp]
\caption{Tasks To Do \today.}
\index{Pomodoro!to be dones}
\label{tab:activity}
%p{0.678\textwidth}
\begin{tabular}{l l l l}
\toprule
Deadline &
ProjectID to &
Task &
Estimated poms \\
\midrule
& & Revise personal statement for Ramesh & 4 \\
\midrule
& & Unplanned and Urgent & \\
\midrule
& & & \\
\bottomrule
\end{tabular}
\end{table}"
insert today,\subsection{To be done today}
insert two column table,"% Add this package to the Preamble
% \usepackage{booktabs}
\begin{table}[htp] % (fold)
\caption{Python script to find lost bytes.}
\index{copying and pasting code!lost bytes}
\label{tab:label}
\begin{center}
\begin{tabular}{ll}
\toprule
LongHeader2 & LongHeader3 \\
\midrule
Item1 & X11 \\
X11 & X11 \\
X12 & X11 \\ \bottomrule
\end{tabular}
\end{center}
\end{table}
% table label (end)"
insert url for space group tables,\url{http://img.chem.ucl.ac.uk/sgp/LARGE/sgp.htm}
insert verbatim,"\begin{verbatim}
Replace
Replace
\end{verbatim}"
insert wilson ratio,$\langle F\rangle^2 /\left\langle F^2\right\rangle$
insert wp enter,<press:wp><enter>
inset code 0,"% Line numbering on and aligned with left margin.
\begin{code}{}
\index{openCV!measureSizes}
\label{lst:measureSize}
\caption{Contents of measureSizes.py.}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=true,
xleftmargin=\parindent,
breaklines]{python}
import me
\end{minted}
\end{code}
"
open overleaf documentaton,<open:https://www.overleaf.com/learn>
open overleaf help,<open:https://www.overleaf.com/learn>
tiny note, \note{\tiny{<capitalize>}}
insert label,\label{Replace}
insert ref,\ref{Replace}
insert caption,\caption{Replace \label{Replace}}
insert cpp code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{cpp}
<<Paste code here>>
\end{minted}
\end{code}"
insert r code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{R}
<<Paste code here>>
\end{minted}
\end{code}"
insert c code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{c}
<<Paste code here>>
\end{minted}
\end{code}"
insert bash code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{bash}
<<Paste code here>>
\end{minted}
\end{code}"
insert dot code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{dot}
<<Paste code here>>
\end{minted}
\end{code}"
insert gnuplot code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{gnuplot}
<<Paste code here>>
\end{minted}
\end{code}"
insert graphviz code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{graphviz}
<<Paste code here>>
\end{minted}
\end{code}"
insert java code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{java}
<<Paste code here>>
\end{minted}
\end{code}"
insert javascript code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{javascript}
<<Paste code here>>
\end{minted}
\end{code}"
insert markdown code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{markdown}
<<Paste code here>>
\end{minted}
\end{code}"
insert restructuredtext code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{restructuredtext}
<<Paste code here>>
\end{minted}
\end{code}"
insert mathematica code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{mathematica}
<<Paste code here>>
\end{minted}
\end{code}"
insert python code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{python}
<<Paste code here>>
\end{minted}
\end{code}"
insert python code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{python}
<<Paste code here>>
\end{minted}
\end{code}"
insert pycon code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{pycon}
<<Paste code here>>
\end{minted}
\end{code}"
insert common lisp code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{common-lisp}
<<Paste code here>>
\end{minted}
\end{code}"
insert elisp code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{elisp}
<<Paste code here>>
\end{minted}
\end{code}"
insert clojure code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{clojure}
<<Paste code here>>
\end{minted}
\end{code}"
insert clojurescript code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{clojurescript}
<<Paste code here>>
\end{minted}
\end{code}"
insert make code,"% Add the following lines to the preamble to make a float environment for code listings so that they can be captions.
%\usepackage{minted}
%\newenvironment{code}{\captionsetup{type=listing}}{} % Make a float environment for code listings.
% Lists can be generated for floats with captions by adding the two lines after the \tableofcontents macros.
%\renewcommand\listoflistingscaption{List of source codes}
%\listoflistings
\begin{code}{}
\index{replace1!replace2}
% Remember to insert a matching \ref{} macro that references the label in the caption for the code listing.
\caption{ \label{lst:replace1}}
\begin{minted}[frame=lines,
framerule=2pt,
linenos=false,
xleftmargin=\parindent,
breaklines]{make}
<<Paste code here>>
\end{minted}
\end{code}"