Answers for "table generator latex"

-2

making simple table in latex

\begin{tabularx}{0.8\textwidth} { 
  | >{\raggedright\arraybackslash}X 
  | >{\centering\arraybackslash}X 
  | >{\raggedleft\arraybackslash}X | }
 \hline
 item 11 & item 12 & item 13 \\
 \hline
 item 21  & item 22  & item 23  \\
\hline
\end{tabularx}
Posted by: Guest on January-13-2021
-1

table generator latex

\begin{table}[]
\resizebox{15cm}{!}{%
\begin{tabular}{|l|l|l|l|l|}
\hline
\# & Element & Interaction & Description & STRIDE \\ \hline
1 & User browser & \begin{tabular}[c]{@{}l@{}}User sends login details to \\ Single-Sign-On server\end{tabular} & \begin{tabular}[c]{@{}l@{}}One could potentially steal someone's \\ login details and use this to login. \\ There is no additional authentication \\ step taken in this process.\end{tabular} & S \\ \hline
2 &  &  &  &  \\ \hline
3 &  &  &  &  \\ \hline
4 &  &  &  &  \\ \hline
5 &  &  &  &  \\ \hline
6 &  &  &  &  \\ \hline
7 &  &  &  &  \\ \hline
8 &  &  &  &  \\ \hline
9 &  &  &  &  \\ \hline
10 &  &  &  &  \\ \hline
11 &  &  &  &  \\ \hline
12 &  &  &  &  \\ \hline
\end{tabular}%
}
\end{table}
Posted by: Guest on October-10-2021

Browse Popular Code Answers by Language