Warning: Undefined array key "REMOTE_USER" in /home/especiais/epsatisep/public_html/2024/EPS2024-wiki3/lib/plugins/autologoff/helper.php on line 71
==== Plugins Usage Examples ====
==== Refnotes Plugin Usage Examples ====
These are examples of citations to books [(Thapa2019)] and [(Obayashi2020)], a chapter on a smart companion [(Reis2020)], articles on blimps [(Mahn2006)], cloud computing [(Llorente2009)], gas emissions [(Ranjith2020)], pedestrian crossing behaviour [(Sobhani2018)], smart bicycles [(Lee2018)] and diaper moisture [(Khan2018)], and to Web resources [(android41)], [(cloudexpo2008)] and [(gartner2021)].
Please use superscript and subscript annotations to write powers and indexes, //e.g.//, m2 and CO2.
==== Caption Plugin Usage Examples ====
Table {{ref>tlabel0}} illustrates a boxed table with default column widths and Table {{ref>tlabelx}} with specific column widths.
Boxed table
^Abbreviation ^Description ^
|EPS |European Project Semester |
|ISEP|Instituto Superior de Engenharia do Porto |
|USB |Universal Serial Bus |
Boxed table with specific column widths
^ Abbreviation ^Description ^
|EPS |European Project Semester |
|ISEP|Instituto Superior de Engenharia do Porto |
|USB |Universal Serial Bus |
Table {{ref>tlabel1}} shows the execution time results for each API. Table {{ref>tlabel2}} lists the fruit bought at the grocery.
Figure {{ref>flabel1}} displays a magnificent owl from Lapland.
{{ :chouette.lapone.relo.4g-mocho_2.jpg?250 |}}
Owl
Figure {{ref>flabel2}} illustrates the placement of two images side by side.
{{ :chouette.lapone.relo.4g-mocho_2.jpg?250|Image 1}}
{{:chouette.lapone.relo.4g-mocho_2.jpg?250 |Image 2}}
Images side by side
Figure {{ref>flabel3}} presents the European Project Semester (EPS) logo.
{{ :eps_logo.jpg?200 |}}
EPS logo
==== MathJax Plugin Usage Example ====
Equation \ref{eq:cosinesimilarity} represents the cosine similarity between two vectors of features. This similarity measurement takes values in the range of $[0,1]$ [(bandyopadhyay2013unsupervised)].
This is an in line expression $a+b=c$.
\begin{equation}
\cos\alpha=\frac{\hat{A}\cdot\hat{B}}{|\hat{A}\|\hat{B}|}\equiv\frac{\sum_{j=1}^{n} \hat{A}_j \hat{B}_j}{\sqrt{\sum_{j=1}^{n} \hat{A}^{2}_j}\sqrt{\sum_{j=1}^{n} \hat{B}^{2}_j}}
\label{eq:cosinesimilarity}
\end{equation}
As [(bandyopadhyay2013unsupervised)] states, the most popular similarity metrics are the distance and the cosine similarity. The distance-based metrics include the Euclidean distance, the Hamming distance or the Chebyshev distance, among others.
Equation \ref{eq:euclideandistance} displays the Euclidean distance formula.
\begin{equation}
d(x,y)=\sqrt{\sum_{k=1}^{n}(x_{k}-y_{k})^{2}}
\label{eq:euclideandistance}
\end{equation}
==== Todo Plugin Usage Example ====
For project management
Task allocationGantt chart
~~NOCACHE~~
~~TODOLIST~~
==== Task Plugin Usage Example ====
Define, allocate and track the status of the project tasks:
{{tasks>[namespace]?all&[flags]}}
==== AV Task Box Plugin Usage Example ====
TITLE: Market research
PRIORITY: High
ESTIMATE: 4 h
PROGRESS: 10%
ASSIGNED: Adam, Sophie and Xavier
DESCRIPTION: Perform a market research concerning your product.
==== Code Listing Example ====
The server code is presented in Listing {{ref>clabel0}}.
Server-side code
public class CheckersServer {
private static final int PORT = 12345;
private static char[][] board;
private static List clients = new ArrayList<>();
public static void main(String[] args) {
board = new char[8][8];
initializeBoard();
try (ServerSocket serverSocket = new ServerSocket(PORT)) {
System.out.println("Checkers Server is running...");
while (true) {
Socket clientSocket = serverSocket.accept();
ClientHandler clientHandler = new ClientHandler(clientSocket);
clients.add(clientHandler);
new Thread(clientHandler).start();
}
} catch (IOException e) {
e.printStackTrace();
}
}
===== Bibliography ======