blob: e2e9f49cae7af24c65c290d711fccbb35ed50cce (
plain) (
blame)
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
|
% To rebuild the .pdf from this source, use something like the following
% latex quickref.tex
% dvips -t letter -f -Pcmz < quickref.dvi >| quickref.ps
% ps2pdf -sPAPERSIZE=letter quickref.ps
\documentclass[12pt]{article}
\usepackage[utf-8]{inputenc}
\usepackage{lscape}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage[normalem]{ulem}
\usepackage[spanish]{babel}
\usepackage{color}
\usepackage{hyperref}
\usepackage[T1]{fontenc}
\textheight=9in
\textwidth=7.5in
\headheight=0pt
\headsep=0pt
\topmargin=0in
\oddsidemargin=-0.4in
\evensidemargin=-0.6in
\parindent=0pt
\parsep=1pt
\pagestyle{empty}
\date {}
\makeatother
\begin{document}
\begin{landscape}
% \textit{Dan Kuester's all-leather}
\begin{center}
\begin{minipage}[m]
{1in}\includegraphics[height=0.9in]{../evolution-logo.eps}\hspace{5mm}
\end{minipage}
\hspace{5mm}
\textbf{\Huge{Tarjeta de referencia rápida de Evolution}}
\end{center}
\begin{center}
\begin{multicols}{2}
\section*{Global}
\begin{tabular*}{4in}{rp{1.5in}}
\textit{\textbf{Componentes}} & \\
Correo & \textbf{Ctrl+1} \\
Contactos & \textbf{Ctrl+2} \\
Calendario & \textbf{Ctrl+3} \\
Tareas & \textbf{Ctrl+4} \\
\vspace{1.5mm}
Notas & \textbf{Ctrl+5} \\
\textit{\textbf{Controles}} & \\
Elemento nuevo en el modo actual & \textbf{Ctrl+N} \\
Cambiar el foco entre los paneles & \textbf{F6} \\
Limpiar la barra de búsqueda & \textbf{Mayús.+Ctrl+Q} \\
Cerrar ventana & \textbf{Ctrl+W} \\
Abrir ventana nueva & \textbf{Mayús.+Ctrl+W} \\
\vspace{1.5mm}
Salir de Evolution & \textbf{Ctrl+Q} \\
\textit{\textbf{Selección}} & \\
Imprimir selección & \textbf{Ctrl+P} \\
Guardar selección & \textbf{Ctrl+S} \\
Borrar selección & \textbf{Supr} o \textbf{Retroceso} \\
Mover correo/contactos a carpeta & \textbf{Mayús.+Ctrl+V} \\
Copiar correo/contactos a carpeta & \textbf{Mayús.+Ctrl+Y} \\
\end{tabular*}
\section*{Componentes de contactos/notas}
\begin{tabular*}{4in}{rp{1.5in}}
\textit{\textbf{Comandos generales}} & \\
Contacto nuevo & \textbf{Mayús.+Ctrl+C} \\
Lista de contactos nueva & \textbf{Mayús.+Ctrl+L} \\
Nota nueva & \textbf{Mayús.+Ctrl+O} \\
\end{tabular*}
% {\\ \vspace{5mm} \footnotesize \textit{* denotes the feature may not be implemented yet}}
\section*{Componente de correo}
\begin{tabular*}{4in}{rp{1.5in}}
\textit{\textbf{Comandos generales}} & \\
Mensaje nuevo & \textbf{Mayús.+Ctrl+M} \\
\vspace{1.5mm}
Enviar/Recibir mensajes & \textbf{F9} \\
\textit{\textbf{Selección}} & \\
Aplicar filtros & \textbf{Ctrl+Y} \\
Abrir en una ventana nueva & \textbf{Retorno} o \textbf{Ctrl+O} \\
\vspace{1.5mm}
Reenviar selección & \textbf{Ctrl+F} \\
\textit{\textbf{Panel de lista de mensajes}} & \\
Siguiente mensaje no leído & \textbf{.} o \textbf{]} \\
\vspace{1.5mm}
Anterior mensaje no leído & \textbf{,} o \textbf{[} \\
\textit{\textbf{Panel de vista previa}} & \\
Responder al remitente & \textbf{Ctrl+R} \\
Responder a la lista & \textbf{Ctrl+L} \\
Responder a todos los remitentes & \textbf{Mayús.+Ctrl+R} \\
Desplazar arriba & \textbf{Retroceso} \\
Desplazar abajo & \textbf{Espacio} \\
\end{tabular*}
\section*{Componentes de calendario/tareas}
\begin{tabular*}{4in}{rp{1.5in}}
\textit{\textbf{Comandos generales}} & \\
Cita nueva & \textbf{Mayús.+Ctrl+A} \\
Reunión nueva & \textbf{Mayús.+Ctrl+E} \\
\vspace{1.5mm}
Tarea nueva & \textbf{Mayús.+Ctrl+T} \\
% \vspace{1.5mm}
% Expunge/Purge old schedules & \textbf{Ctrl+E} \\
\textit{\textbf{Navegación}} & \\
Ir a hoy & \textbf{Ctrl+T} \\
Ir a fecha & \textbf{Ctrl+G} \\
\end{tabular*}
\end{multicols}
\end{center}
\end{landscape}
\end{document}
|