-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.tex
executable file
·145 lines (126 loc) · 4.21 KB
/
test.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
139
140
141
142
143
144
145
\documentclass[professionalfont]{beamer}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{graphicx}
\graphicspath{{figures/}}
\usepackage{tikz}
\usepackage{textpos}
% usage: \tikzpic{<x percent>}{<y percent>}{<image size>}{<image name>}
\newcommand*{\tikzpic}[4]{%
\begin{tikzpicture}[remember picture,overlay]
\node at (current page.south west) [xshift=#1\paperwidth,yshift=#2\paperheight] {\includegraphics[width=#3\linewidth]{#4}};
\end{tikzpicture}%
}
% Utility commands for programmatic multiple slide numbering
\newcounter{slideCounter}
\newcommand{\resetSlideCounter}{\setcounter{slideCounter}{0}}
\resetSlideCounter
% Programmatic slide naming
\newcommand{\titlesec}{\frametitle{\textbf{\insertsectionhead}}}
\newcommand{\titlesecnum}{\frametitle{\textbf{\insertsectionhead} \;(\arabic{slideCounter})}
\stepcounter{slideCounter}}
\newcommand{\titlesub}{\frametitle{\textbf{\insertsectionhead}\;|\; \insertsubsectionhead}}
\newcommand{\titlesubnum}{
\frametitle{\textbf{\insertsectionhead}\;|\; \insertsubsectionhead \;(\arabic{slideCounter})}
\stepcounter{slideCounter}}
% Command for highlighting text
\newcommand{\hgl}[1]{\textcolor{POLIMIblue}{\textbf{#1}}}
% Enumeration on multiple slides
\newcounter{saveenumi}
\newcommand{\seti}{\setcounter{saveenumi}{\value{enumi}}}
\newcommand{\conti}{\setcounter{enumi}{\value{saveenumi}}}
\resetcounteronoverlays{saveenumi}
\title[Social conversational spaces]%
{\textbf{Designing social conversational spaces}:\\enhancing communicative and emotional impact}
\author[L. Spagnolo]{Luigi Spagnolo\\
{\small \href{mailto:spagnolo@elet.polimi.it}{\nolinkurl{spagnolo@elet.polimi.it}}}}
\date{\today}
\institute[POLIMI]{\textbf{Politecnico di Milano}\\Department of Electronics and Information}
\usetheme{POLIMI}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\AtBeginSection[]
{
\begin{frame}
\frametitle{Outline}
%\tableofcontents[currentsection,hideallsubsections]
\tableofcontents[currentsection]
\end{frame}
}
\section{Example of section}
\subsection{Open questions}
\begin{frame}
\titlesub
\begin{itemize}
\item What does mean that the information contained in a given conversation is \emph{interesting} or \emph{relevant}? For which users? In which context?
\item Which measurable features of social discussions should be considered?
\item What are the best strategies for recommending or highlighting the most interesting contributions?
\item What are the best strategies for exploring on-going and past discussions?
\item How to handle large social spaces?
\begin{itemize}
\item Many users with different background and expertise (e.g in education and cultural heritage)
\item An high volume of messages exchanged (blogs with thousands of comments per post
\end{itemize}
\end{itemize}
\end{frame}
\subsection{My research work}
\begin{frame}
\titlesub
\begin{block}{Communication-oriented approach}
Investigating possible relevant features for providing users with a better \hgl{sense making} of
\begin{itemize}
\item the \hgl{themes} of the discussion
\item the degree of \hgl{quality} and \hgl{interestingness} of a conversation
\item the \hgl{authoritativeness} and degree of \hgl{involvement} of its \hgl{participants}.
\end{itemize}
\end{block}
Towards a framework of \hgl{design strategies} for
\begin{itemize}
\item determining the relevant features of discussions from metadata extracted using standard \hgl{text and opinion mining} tools
\item \hgl{visual representation} of \hgl{past and ongoing conversations}, supporting
\begin{itemize}
\item at a glance understanding of themes and participants involved
\item deeper investigation, analysis and retrieval
\end{itemize}
\end{itemize}
\end{frame}
\section{Another section}
\resetSlideCounter
\subsection{The subsection}
\begin{frame}
\titlesubnum
\begin{itemize}
\item First
\item Second
\end{itemize}
\end{frame}
\begin{frame}
\titlesubnum
\begin{itemize}
\item Third
\item Fourth
\end{itemize}
\end{frame}
\resetSlideCounter
\subsection{Another subsection}
\begin{frame}
\titlesubnum
\POLIMItitle{POLIMI Title}
\begin{enumerate} [i)]
\item First
\item Second
\item Third
\seti
\end{enumerate}
\end{frame}
\begin{frame}
\titlesubnum
\begin{enumerate} [i)]
\conti
\item Fourth
\item Fifth
\end{enumerate}
\end{frame}
\end{document}