Skip to content

Commit

Permalink
[ADD] Source
Browse files Browse the repository at this point in the history
  • Loading branch information
FMCalisto committed May 7, 2019
1 parent 56ba704 commit 4051095
Show file tree
Hide file tree
Showing 22 changed files with 778 additions and 2 deletions.
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,25 @@
# dots
:white_check_mark: Dimensions Of Trust Scale (DOTS) LaTeX Version
# Dimensions Of Trust Scale (DOTS) LaTeX Version

<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/LaTeX_logo.svg/1599px-LaTeX_logo.svg.png">

[![DOI]()]()

This repository contains the source for the [Dimensions Of Trust Scale (DOTS)](http://people.wku.edu/richard.miller/Mayer%20Trust%20article.pdf) of [Roger C. Mayer](https://www.researchgate.net/scientific-contributions/79364000_Roger_C_Mayer), [James H. Davis](https://www.researchgate.net/scientific-contributions/81323154_James_H_Davis) and [F. David Schoorman](https://www.researchgate.net/scientific-contributions/2004290170_F_David_Schoorman). The presented scale version was developed using [LaTeX](https://en.wikipedia.org/wiki/LaTeX). This repository is based on the information published on the [Academy of Management](https://www.jstor.org/publisher/aom) for the work titled as *[An Integrative Model of Organizational Trust](http://people.wku.edu/richard.miller/Mayer%20Trust%20article.pdf)* of *[Mayer et al.](http://people.wku.edu/richard.miller/Mayer%20Trust%20article.pdf)* authors. The method assesses **trust** dimensions on five 7-point scales. Increments of high, medium and low estimates for each point result in several gradations on the scales. The general template can be found on the [`src/`](src/) directory, while the *samples* can be found at [`samples/`](samples/) directory. We used the [LaTeX](https://www.latex-project.org/) format, a typesetting system that includes features designed for the production of technical and scientific documentation. [LaTeX](https://www.latex-project.org/) is available as [free software](https://www.latex-project.org/lppl/).

## Citing

We kindly ask **scientific works and studies** that make use of this DOTS Survey by citing it in their associated publications. Similarly, we ask **open-source** and **closed-source** works that make use of the DOTS Survey to warn us about this use. You can cite our work using the following BibTeX entry:

```
```

We also propose to cite our [Zenodo](https://zenodo.org) archive, while we are using the registered DOI to track mentions of the source code. You can cite this source code archive using the following BibTeX entry:

```
```

## License

The present repository is under the terms of [MIT](LICENSE) and the hereby information is covered by this. You are free to make changes and use this in either personal or commercial projects. Attribution is not required, but it is welcomed. A little "Thanks!" (or something to that affect) would be much appreciated.
1 change: 1 addition & 0 deletions samples/isr/bibliography/references.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Binary file added samples/isr/images/isr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/isr/images/sipg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/isr/main.pdf
Binary file not shown.
33 changes: 33 additions & 0 deletions samples/isr/main.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
\documentclass{article}
\usepackage{comment} % enables the use of multi-line comments (\ifx \fi)
\usepackage{lipsum} %This package just generates Lorem Ipsum filler text.
\usepackage{fullpage} % changes the margin
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{plotmarks}

\graphicspath{{images/}}

\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
citecolor=black,
}

\begin{document}
%Header-Make sure you update this information!!!!
\noindent
\large\textbf{DOTS} \hfill \textbf{ISR-Lisboa} \\
\normalsize
\hyperlink{https://mida-project.github.io/}{MIDA} \hfill SIPG \\

\input{sections/scale}

\clearpage

\input{sections/info}

\end{document}
49 changes: 49 additions & 0 deletions samples/isr/sections/info.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SECTION %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\section*{Information}

\vspace{1cm}

\textbf{Participant Name} \hfill \textbf{Date}

\vspace{2.5cm}

\textbf{Test} \hfill \textbf{Location}

\vspace{2.5cm}

\textbf{Prototype} \hfill \textbf{Version}

\vspace{2.5cm}

\textbf{Activity} \hfill \textbf{Task}

\vfill

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SECTION %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\section*{Support}

\hfill

List of sponsors, honers and donors:

\hfill

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\hfill

\includegraphics[width=0.25\textwidth]{isr} \hfill \includegraphics[width=0.25\textwidth]{sipg} \hfill

\hfill

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
125 changes: 125 additions & 0 deletions samples/isr/sections/scale.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SECTION %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\subsubsection*{Ability}

\hfill How much was the system able to address all tasks?

\begin{center}

\begin{tikzpicture}[y=.2cm, x=0.05 * \textwidth, font=\sffamily]
%axis
\draw (0,0) -- coordinate (x axis mid) (20,0);

%ticks
\foreach \x in {0}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};

\foreach \x in {1,...,9}
\draw (\x,0pt) -- (\x,5pt)
node[anchor=south] {};

\foreach \x in {10}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};

\foreach \x in {11,...,19}
\draw (\x,0pt) -- (\x,5pt)
node[anchor=south] {};

\foreach \x in {20}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};
\end{tikzpicture}

\hspace{0.25cm} Very Low \hfill Very High \hspace{0.05cm}

\end{center}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SECTION %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\subsubsection*{Benevolence}

\hfill How much was the system concerned about satisfying my needs during interaction?

\begin{center}

\begin{tikzpicture}[y=.2cm, x=0.05* \textwidth,font=\sffamily]
%axis
\draw (0,0) -- coordinate (x axis mid) (20,0);

%ticks
\foreach \x in {0}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};

\foreach \x in {1,...,9}
\draw (\x,0pt) -- (\x,5pt)
node[anchor=south] {};

\foreach \x in {10}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};

\foreach \x in {11,...,19}
\draw (\x,0pt) -- (\x,5pt)
node[anchor=south] {};

\foreach \x in {20}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};
\end{tikzpicture}

\hspace{0.25cm} Very Low \hfill Very High \hspace{0.05cm}

\end{center}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SECTION %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\subsubsection*{Integrity}

\hfill How much was the system upholding principles that are important to me?

\begin{center}

\begin{tikzpicture}[y=.2cm, x=0.05* \textwidth,font=\sffamily]
%axis
\draw (0,0) -- coordinate (x axis mid) (20,0);

%ticks
\foreach \x in {0}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};

\foreach \x in {1,...,9}
\draw (\x,0pt) -- (\x,5pt)
node[anchor=south] {};

\foreach \x in {10}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};

\foreach \x in {11,...,19}
\draw (\x,0pt) -- (\x,5pt)
node[anchor=south] {};

\foreach \x in {20}
\draw (\x,0pt) -- (\x,15pt)
node[anchor=south] {};
\end{tikzpicture}

\hspace{0.25cm} Very Low \hfill Very High \hspace{0.05cm}

\end{center}
1 change: 1 addition & 0 deletions samples/ulisboa-ist/bibliography/references.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Binary file added samples/ulisboa-ist/images/hff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/ulisboa-ist/images/ist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/ulisboa-ist/images/ulisboa.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/ulisboa-ist/main.pdf
Binary file not shown.
33 changes: 33 additions & 0 deletions samples/ulisboa-ist/main.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
\documentclass{article}
\usepackage{comment} % enables the use of multi-line comments (\ifx \fi)
\usepackage{lipsum} %This package just generates Lorem Ipsum filler text.
\usepackage{fullpage} % changes the margin
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{plotmarks}

\graphicspath{{images/}}

\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
citecolor=black,
}

\begin{document}
%Header-Make sure you update this information!!!!
\noindent
\large\textbf{DOTS} \hfill \textbf{University of Lisbon} \\
\normalsize
\hyperlink{https://mida-project.github.io/}{MIDA} \hfill Instituto Superior T\'{e}cnico \\

\input{sections/scale}

\clearpage

\input{sections/info}

\end{document}
49 changes: 49 additions & 0 deletions samples/ulisboa-ist/sections/info.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SECTION %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\section*{Information}

\vspace{1cm}

\textbf{Participant Name} \hfill \textbf{Date}

\vspace{2.5cm}

\textbf{Test} \hfill \textbf{Location}

\vspace{2.5cm}

\textbf{Prototype} \hfill \textbf{Version}

\vspace{2.5cm}

\textbf{Activity} \hfill \textbf{Task}

\vfill

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SECTION %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\section*{Support}

\hfill

List of sponsors, honers and donors:

\hfill

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\hfill

\includegraphics[width=0.25\textwidth]{ulisboa} \hfill \includegraphics[width=0.25\textwidth]{ist} \hfill \includegraphics[width=0.25\textwidth]{hff}

\hfill

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Loading

0 comments on commit 4051095

Please sign in to comment.