-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathrevision-guide.tex
138 lines (115 loc) · 3.64 KB
/
revision-guide.tex
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
\documentclass[a4paper,11pt,twoside]{memoir}
\newcommand{\theversion}{\input{version}}
%\usepackage{textalpha}
\usepackage{subfiles}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{tikz}
\usepackage[european,siunitx]{circuitikz}
\usepackage{amsmath}
\usepackage{lmodern}
\usepackage{amssymb}
\usepackage{wrapfig}
\usepackage{needspace}
\usepackage{xcolor}
\usepackage{siunitx}
\usepackage{enumitem}
\usepackage{longtable}
\usepackage[utf8x]{inputenc}
\usepackage{framed}
% Tikz settings
\usetikzlibrary{decorations.pathmorphing,patterns,decorations.markings,arrows.meta}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\tikzset{>=latex}
\tikzset{->-/.style={decoration={markings, mark=at position #1 with {\arrow{>}}},postaction={decorate}},->-/.default={.5}}
\tikzset{cross/.style={cross out, draw, minimum size=2*(#1-\pgflinewidth), inner sep=0pt, outer sep=0pt},cross/.default={2.5pt}}
% Should be final package loaded
\usepackage{hyperref}
\hypersetup{
colorlinks,
linkcolor={red!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
% Section title formatting
% \titleformat{\chapter}[hang]{\normalfont\Large\bfseries}{\thechapter\ }{1ex}{}
\chapterstyle{section}
\newcommand{\ud}{\,\mathrm{d}}
% Title page formatting
%\pretitle{\begin{center}\Huge\bfseries}
%\title{Pre-U Physics Revision Guide}
%\posttitle{\vfill\end{center}}
%\author{Westminster School}
%\predate{\vfill\begin{center}}
%\postdate{\vspace{8mm}\theversion}
% Specification command
\newcounter{spec}[chapter]
\newcommand{\spec}[1]{\refstepcounter{spec}\Needspace{5\baselineskip}\textcolor{purple}{\textit{(\alph{spec})~#1}}}
\newcommand{\specstar}[1]{\Needspace{5\baselineskip}\textcolor{purple}{\textit{#1}}}
% Example Question
\newcommand{\answer}{\par \textbf{Answer} \par}
\newsavebox{\examplebox}
\newenvironment{example}
{\begin{lrbox}{\examplebox}\begin{minipage}{0.9\textwidth}\textbf{Example Question}\par}
{\end{minipage}\end{lrbox}\fbox{\usebox{\examplebox}}}
% Content
\newenvironment{content}{\section*{Content}
\begin{itemize}}{\end{itemize}}
% Paragraph formatting
\setlength{\parindent}{0em}
\setlength{\parskip}{1em}
% \setlength{\mathindent}{\parindent}
% Numbering and toc
\setsecnumdepth{chapter}
\setcounter{tocdepth}{0}
\include{formeongithub.tex}
\begin{document}
\raggedbottom
\frontmatter
\small\forkme[east]
\begin{titlingpage}
%\maketitle
%\vfill
\vspace*{\fill}
\begin{center}\Huge\bfseries Physics Pre-U Revision Guide \\ \vspace{3cm} \Large Westminster School
\vfill \today \\ \theversion \end{center}
\thispagestyle{empty}
\end{titlingpage}
\tableofcontents
\subfile{about}
\subfile{structure-of-assessment}
\mainmatter
\part*{Part A}
\addcontentsline{toc}{part}{Part A}
\subfile{1-mechanics}
\subfile{2-gravitational-fields}
\subfile{3-deformation-of-solids}
\subfile{4-energy-concepts}
\subfile{5-electricity}
\subfile{6-waves}
\subfile{7-superposition}
\subfile{8-atomic-and-nuclear-processes}
\subfile{9-quantum-ideas}
\addtocontents{toc}{\protect\newpage}
\part*{Part B}
\addcontentsline{toc}{part}{Part B}
\subfile{10-rotational-mechanics}
\subfile{11-oscillations}
\subfile{12-electric-fields}
\subfile{13-gravitation}
\subfile{14-electromagnetism}
\subfile{15-special-relativity}
\subfile{16-molecular-kinetic-theory}
\subfile{17-nuclear-physics}
\subfile{18-the-quantum-atom}
\subfile{19-interpreting-quantum-theory}
\subfile{20-astronomy-and-cosmology}
\appendix
\part*{Appendices}
\addcontentsline{toc}{part}{Appendices}
\subfile{A-equations}
\backmatter
% bibliography, glossary and index would go here.
\end{document}
%sagemathcloud={"latex_command":"latexmk -pdf -f -g -bibtex -synctex=1 -interaction=nonstopmode 'revision-guide.tex'"}