I'm having a bit of trouble with a couple of things, and was hoping to get some help.
1. Here I'm trying to align three pairs of lines.
Code: Select all
\documentclass[a4paper,11pt]{article}
\usepackage{textcomp}
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{MnSymbol}
\sisetup{unitmathrm = mathbf}
\begin{document}
\begin{tabbing}
\textbullet \hspace{0.1cm} 1 micrometre \= $\equal 1$\si{\mu m} \\
\> $\equal 1 \times 10^{-6}$\si{m} \\[0.3cm]
\textbullet \hspace{0.1cm} 1 nanometre \= $\equal 1$\si{nm} \\
\> $\equal 1 \times 10^{-9}$\si{m} \\[0.3cm]
\textbullet \hspace{0.1cm} $2.50$ KiloWatts \= $\equal 2.50$\si{kW} \\
\> $\equal \times 10^{3}$\si{W} \\
\end{tabbing}
\end{document}
2. With this one, I'm trying to create a table with defined column widths.
Code: Select all
\documentclass[a4paper,11pt]{article}
\usepackage{textcomp}
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{MnSymbol}
\sisetup{unitmathrm = mathbf}
\begin{document}
\framebox[0.5cm]{a} \framebox[8.5cm][l]{Acceleration} \framebox[3cm]{\si{ms^{-2}}} \\
\begin{flushleft}
\begin{tabular}{|c| @{\extracolsep{3.2cm}} l| @{\extracolsep{0.1cm}} c|}
\hline
{\textbf{Sym.}} & \textbf{Repesentation} & \textbf{Units} \\
\hline
a & Accelerationhhhhhhhhhhhhhhhhhhhhhh & \si{ms^{-2}} \\
\hline
\end{tabular}
\end{flushleft}
\begin{flushleft}
\begin{tabular}{|c|l|c|}
\hline
{\textbf{Sym.}} & \textbf{Repesentation} & \textbf{Units} \\
\hline
a & Accelerationhhhhhhhhhhhhhhhhhhhhhh & \hspace{2cm} \si{ms^{-2}} \\
\hline
\end{tabular}
\end{flushleft}
\begin{flushleft}
\begin{tabular}{| m{0.8cm}| m{8.5cm}| m{2cm}|}
\hline
{\textbf{Sym.}} & \textbf{Repesentation} & \textbf{Units} \\
\hline
a & Accelerationhhhhhhhhhhhhhhhhhhhhhh & \hspace{2cm} \si{ms^{-2}} \\
\hline
\end{tabular}
\end{flushleft}
\end{document}
I'm trying to get a table, from the left page margin to the right, with three columns, the first with mathematical symbols, the second with information on what the symbols represent and the third with the units of the symbol. The first and third columns needs to be centred. The second column needs to be left aligned, but it's title needs to be centred.
I want to set the widths of the table itself and also the columns. I haven't got any idea what to try now.
Could anyone help me with either of these?
Thanks.