320 likes | 629 Views
Giving Effective Feedback. Effective feedback is designed to help the speaker improve. Immediate. Good Feedback:. Constructive. Personal opinion. Builds confidence. The evaluator benefits too:. Listening skills Analytical skills Observes and learns from effective presentations
E N D
Effective feedback is designed to help the speaker improve.
Immediate Good Feedback: • Constructive • Personal opinion • Builds confidence
The evaluator benefits too: • Listening skills • Analytical skills • Observes and learns from effective presentations • Enhances personal communication skills
How? • Highlight good points • Show you are interested • Talk to speaker in advance • Personalise your language • Be specific • Evaluate the talk, not the person
Build confidence, encourage • Be honest and sincere • Be constructive • Don’t whitewash
Sandwich approach: • Start with speaker’s strong points • Focus on 1-2 points for improvements • Finish on upbeat note, summarising strong points
Basic structure of a document: \documentclass[12pt]{article} \begin{document} \end{document}
Title and Author \title{My test document} \author{Humpty Dumpty} \begin{document} \maketitle
Sectioning: The sectioning commands available depend on the document class. Important ones are: \section \subsection \subsubsection \chapter
Plain text: • Plain English text needs few LaTeX commands. • LaTeX does the formatting. • Several blanks are treated like one. • Text is usually set left and right aligned. • An empty line starts a new paragraph.
Special characters: { and } group things in LaTeX % starts a LaTeX comment $ starts or ends maths mode $$ starts or ends maths display mode \ starts a LaTeX command To type a special character, precede it with a \ e.g. \$ prints $ and \% prints %.
Changing Fonts: LaTeX supports different fonts, e.g. bold face, italics, etc. Bold: {\bf he}llo appears as hello. italics: {\it he}llo appears as hello . underline: {\underline he}llo appears as hello.
Environments: LaTeX supports different environments: \begin{....} \end{...}
Itemizing: \begin{itemize} \item bread \item butter \end{itemize} appears as • bread • butter
Enumerating: \begin{enumerate} \item bread \item butter \end{enumerate} appears as • bread • butter
Description Environment: \begin{description} \item[bread] (multi grain) \item[butter] (unsalted) \end{description} appears as bread (multi grain) butter (unsalted)
Making Tables: \begin{tabular}{ l l c r } bread & 1 loafs & 500 g & \$2.50 \\ chocolate & 2 bars & 100 g each & total \$ 2.40 \\ \end{tabular} appears as bread 1 loaf 500 g $2.50 chocolate 2 bars 100 g each total $2.40
Borders: If two columns are separated with a vertical bar | there will be a vertical line between these columns in the table.
Typing Mathematics: Mathematics is typed in a special mode, the maths mode. $ ..... $ or \{ .... \} For example, the intersection $A \cap B $ of the sets A and B.
Displaying Mathematics: The displayed maths mode is enclosed in $$ .... $$ or \[ ... \] Displayed mathematics is set centred on a line by itself.
Mathematical Symbols There are many. See handout. e.g. \alpha, \beta Greek alphabet \sum, \product \rightarrow and many more
New Environments: The following definition before \begin{document} defines an environment for theorems: \newtheorem{theorem}{Theorem}[section]
Cross Referencing: \begin{equation}\label{eq:sum} x = y + z \end{equation} By Equation (\ref{eq:sum}) we can see that....
appears as: x = y +z (11) By Equation (11) we can see that
More Cross Referencing \begin{theorem}\label{MyTheorem} A fabulous result. \end{theorem} By Theorem~\ref{MyTheorem}
Theorem 7.1 A fabulous result. By Theorem 7.1
Labelling other Environments: You can also label other environments, e.g. sections. When using cross referencing, make sure you run LaTeX at least twice.