Thread Closed

Latex vector notation.

 
Share Thread Thread Tools
Sep20-07, 07:41 AM   #1
 

Latex vector notation.


1. The problem statement, all variables and given/known data
a. How do I write vectors bold within displaymath and frac. I want Phi, r and r_1 bold. But get G M_1 bold as well = bad.
b. How do I use arrows instead of the bold notation?

3. The attempt at a solution
\begin{displaymath}
a1. textbf{\Phi(r)} = -\frac{G M_1}{| textbf{r}-textbf{r_1} |}
\end{displaymath}
a2. \bf{\Phi}(\bf{r}) = -\frac{G M_1}{| \bf{r}-\bf{r_1} |}
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
Sep20-07, 08:13 AM   #2
 
Arrows: \vec : [tex]\vec \Phi ( \vec r) = -\frac{G M_1}{| \vec{r}-\vec r_1 |} [/tex]
Bold: \mathbf : [tex]\mathbf{\Phi}( \mathbf{r}) = -\frac{G M_1}{| \mathbf{r}-\mathbf{r_1} |} [/tex]

I don't think you really want the potential to be a vector, but that's what your code implied, so I kept it.
Sep20-07, 08:34 AM   #3
D H
 
Mentor
Quote by IlyaZ View Post
a. How do I write vectors bold within displaymath and frac. I want Phi, r and r_1 bold. But get G M_1 bold as well = bad.
You get other bad stuff as well using \textbf. Don't use it in math mode.

\textbf{\Phi(r)} = -\frac{G M_1}{| \textbf{r}-\textbf{r_1} |}
[tex]\textbf{\Phi(r)} = -\frac{G M_1}{| \textbf{r}-\textbf{r_1} |}[/tex]

\bf doesn't work at all:
\bf{\Phi}(\bf{r}) = -\frac{G M_1}{| \bf{r}-\bf{r_1} |}
[tex]\bf{\Phi}(\bf{r}) = -\frac{G M_1}{| \bf{r}-\bf{r_1} |}[/tex]

Timo suggested \mathbf, but that doesn't work on some things.
If you have access to the AMSLaTeX macros, (and you should), use \boldsymbol.

\boldsymbol{\Phi}(\boldsymbol{r}) = -\frac{G M_1}{| \boldsymbol{r}-\boldsymbol{r}_1 |}
[tex]\boldsymbol{\Phi}(\boldsymbol{r}) = -\frac{G M_1}{| \boldsymbol{r}-\boldsymbol{r}_1 |}[/tex]

b. How do I use arrows instead of the bold notation?
Use \vec.

An even better solution is to define your own vector macro that formats vectors the way you want them to appear. For example,
\newcommand{\vect}[1]{\boldsymbol{#1}}
Then when someone tells you to format your vectors with arrows instead you can simply change that one macro.
\newcommand{\vect}[1]{\vec{#1}}
Bold symbols are used for things other than vectors (matrices, for example). A global search-and-replace is not a good idea.
Sep20-07, 09:01 AM   #4
 

Latex vector notation.


Thanks, that works great!
Thread Closed
Thread Tools


Similar Threads for: Latex vector notation.
Thread Forum Replies
bra-ket notation in latex Quantum Physics 4
Latex -- how to do Dirac slash notation Math & Science Software 2
Unit vector notation Introductory Physics Homework 2
Vector calculus Notation Calculus 13
Derivatives in Vector Notation Calculus & Beyond Homework 17