• Aug 11 Fri 2017 00:03
  • Figure

Examples:

Case (1) (for two-column):

First part:

\usepackage{float}
\usepackage{multicol}

Second part:

\begin{figure}[H]
  \includegraphics[width=0.45\textwidth]{frog.eps}
  \caption{Frog .}
\end{figure}

ytl0821 發表在 痞客邦 留言(0) 人氣()

  • Aug 10 Thu 2017 14:25
  • Table

Examples:

\begin{enumerate}

\item
\begin{tabular}{ l c r }
 1 & 2 & 3 \\
 4 & 5 & 6 \\
 7 & 8 & 9 \\
\end{tabular}

\item
\begin{tabular}{ l | c | r }

ytl0821 發表在 痞客邦 留言(0) 人氣()

Commands:

Step 1. \usepackage{multicol}

Step 2.

\begin{multicols}{#}    - # = 2 -> two-column, if # = 3 -> three-column.

...

\end{multicols}

 

Example:

\documentclass[a4paper]{article}

%% Language and font encodings

ytl0821 發表在 痞客邦 留言(0) 人氣()

Commands:

Screen Shot 2017-08-09 at 14.41.46.png

 

Example:

{\tiny sans-serif family}, {\scriptsize boldface}, {\footnotesize upright shape}

 

Result:

Screen Shot 2017-08-09 at 14.45.25.png


ytl0821 發表在 痞客邦 留言(0) 人氣()

Commands:

Screen Shot 2017-08-09 at 14.37.51.png

 

Example:

\textsf{\textbf{sans-serif family, boldface, upright shape}}\\
\textrm{\textsl{roman family, medium, slanted shape}}

 

Result:

Screen Shot 2017-08-09 at 14.36.48.png

 

ytl0821 發表在 痞客邦 留言(0) 人氣()