Proper Use of LaTeX: Common Typographical Errors

  • LaTeX
  • Thread starter DrClaude
  • Start date
  • Tags
    Errors Latex
  • Featured
In summary,There are some things that always scorch my eyes, like improper italics [##sin(x)##] or incorrect typography of units [##128kg##].I wonder those of you who are sticklers for typography have other pet peeves of the kind.Personally, I'm mostly concerned with actual LaTeX documents. I'm spending lots of time right now correcting lab reports and some things keep cropping up.What I do care about is when it is used with improper spacing so that it is not clear at all what is there...$$\int x dx$$Note that the LaTeX code has the required space, but a space
  • #1
DrClaude
Mentor
8,380
5,470
I am writing a document for my students about the proper use of ##\LaTeX##. There are some things that always scorch my eyes, like improper italics [##sin(x)##] or incorrect typography of units [##128kg##].

I wonder those of you who are sticklers for typography have other pet peeves of the kind.

(Somehow, I think that @Orodruin might have something to say about this :smile:)
 
  • Like
Likes Ackbach, YoungPhysicist, Demystifier and 5 others
Physics news on Phys.org
  • #2
Will you publish your document here as an insight?

The Elements of Latex Style by D.R. Claude
 
  • Like
Likes haushofer, Dr. Courtney, Greg Bernhardt and 2 others
  • #3
jedishrfu said:
Will you publish your document here as an insight?
Good idea!
 
  • Like
Likes Greg Bernhardt and jedishrfu
  • #4
I found a few suggested items for your document:

https://tex.stackexchange.com/questions/12171/styleguide-for-latex-similar-to-the-google-styleguides

where they mention use of appropriate white space and placing certain tags on separate lines.

http://inverseprobability.com/latexStyleGuide

where they list 10 points to follow

and this heavier style guide:

https://web.science.mq.edu.au/~rdale/resources/writingnotes/latexstyle.html

An ACM guide to download:

https://www.acm.org/publications/acm-latex-style-guide-3jan2017

a style guide written in Tex:

https://web.stanford.edu/class/ee364b/latex_templates/template_notes.tex

Lastly, from Journal of Statistical Software:

https://www.jstatsoft.org/pages/view/style
 
  • #5
@jedishrfu: Thanks, but this is not exactly what I am looking for. The first couple of links are about the formatting of the ##\LaTeX## code, while I care only about the final product.

As for the others, there is too much information in there. I want to focus on the little things that students often get wrong, but which makes it hard/unpleasant to read.
 
  • Like
Likes jedishrfu
  • #6
I mentioned these references only for you to briefly read to see if there's anything useful for your style guide.

I frequently do that when I need to find best practices for something. Often I won't like how someone boxed themselves in in trying to create the perfect style guide instead of using some commonsense. This was common for C coding styles back when C was hot, now its Java or Python...

Probably the one to look at would be:

https://web.science.mq.edu.au/~rdale/resources/writingnotes/latexstyle.html
 
  • #7
DrClaude said:
Somehow, I think that @Orodruin might have something to say about this :smile:
Oh, this is a deep pool ... :rolleyes:

Edit: I might have the time to go through the most horrible ones when I am home. Currently I am on my phone and typing all of that LaTeX would be bothersome.
 
  • Like
Likes jedishrfu
  • #8
Just out of interest. Are you only after style issues that show up when using MathJax here or more general style issues with actual LaTeX documents?
 
  • #9
Orodruin said:
Just out of interest. Are you only after style issues that show up when using MathJax here or more general style issues with actual LaTeX documents?

Yes
 
  • #10
jedishrfu said:
Yes
Which one? :rolleyes:
 
  • Like
Likes jedishrfu
  • #12
[itex]|\psi>[/itex] instead of [itex]|\psi\rangle[/itex] hurts my eyes.

/edit: And also [itex](\frac{a^2}{b})[/itex] instead of [itex]\left(\frac{a^2}{b}\right)[/itex]. But I think that these little sins of style only stick out as much because the use of Latex usually leads to such a beautiful document overall. I am still amazed by how easy it is to produce a document with a professional look with Latex.
 
Last edited:
  • Like
Likes Demystifier, collinsmark, DrClaude and 1 other person
  • #13
I think this error results from students thinking of latex as a kind of alphabet and the since they need a right bracket the automatically choose the ##>## sign. We do this on our keyboards all the time to enter an expression or formula.

One strategy might be to add these rare symbols to the top of the style guide as a kind top ten gotchas.

Actually our site has a pretty good summary of MathJax/Latex

https://www.physicsforums.com/help/latexhelp/
 
  • #14
Orodruin said:
Just out of interest. Are you only after style issues that show up when using MathJax here or more general style issues with actual LaTeX documents?
I'm mostly concerned with actual LaTeX documents. I'm spending lots of time right now correcting lab reports and some things keep cropping up.
 
  • #15
I know at least a person annoyed when the "d" sign of the differential appearing in integrals is not straight. There's a special command to make it appear normal, but most people ignore it and so the d appears curved.
 
  • #16
fluidistic said:
I know at least a person annoyed when the "d" sign of the differential appearing in integrals is not straight. There's a special command to make it appear normal, but most people ignore it and so the d appears curved.
Do you mean
$$
\int x \, \mathrm{d}x
$$
as opposed to
$$
\int x \, dx
$$
?

There is no accepted standard for this, since while many (including me) argue that the former is the proper way to typeset the d, Physical Review uses the latter.
 
  • #17
DrClaude said:
Do you mean
$$
\int x \, \mathrm{d}x
$$
as opposed to
$$
\int x \, dx
$$
?

There is no accepted standard for this, since while many (including me) argue that the former is the proper way to typeset the d, Physical Review uses the latter.
This one I don't really care about as long as it is done consistently. What I do care about is when it is used with improper spacing so that it is not clear at all what is there...
$$
\int x dx
$$
Note that the LaTeX code has the required space, but a space in math mode in LaTeX is not what many people think it is.

Here is a selection of my LaTeX pet peeves. I don't think it is exhaustive but those are the ones I can think of at the moment.

Starting a new paragraph after an equation or a figure: A common mistake is to want to space out the LaTeX source around a figure or equation. What many do not realize is that if this is done carelessly, LaTeX is going to interpret this as the equation/figure forming its own paragraph due to the multiple line breaks in the source. This can be helped in the following fashion by commenting out the line breaks:
Incorrect:
Code:
bla bla bla

*Equation/Figure code*

bla bla bla
Correct:
Code:
bla bla bla
%
*Equation/Figure code*
%
bla bla bla

Sure, there are some times when you might want to actually end your paragraph with an equation, then go ahead. However, this should be done consciously, not by accident.

Using different symbols in math mode and text: Yes, those dollar signs are annoying to type out, but not including them is a certain way to make sure your report looks unprofessional. It is ugly and confusing and some symbols really look different in regular text and in the math mode italic.

Incorrect:
Einstein found out that
$$
E = mc^2,
$$
where E is the energy, m is the mass, and c is the speed of light in vacuum.

Correct:
Einstein found out that
$$
E = mc^2,
$$
where ##E## is the energy, ##m## is the mass, and ##c## is the speed of light in vacuum.

Using relations as delimiters: It has already been mentioned in this thread. In particular the bra-kets used in quantum mechanics. < and > in LaTeX are relations and are typset as such, with spacings appropriate for relations, such as ##1 < 2##. This is not to be used for bras or kets ##|1> |2>## (note the horrible spacing - this is practically unreadable to me without getting a headache). The appropriate delimiters to use in this case are \langle and \rangle, ##|1\rangle## or ##\langle 2|##. Alternatively, < and > do become delimiters when used in conjunction with \left and \right.

Not using proper spacing after abbreviations: My PhD student thinks I have an uncanny sense for this one when correcting texts. LaTeX interprets periods as the end of a sentence and typsets the spacing accordingly, slightly longer than the spacing between words. However, LaTeX does not inherently know when your period is just the period noting an abbreviation such as e.g., i.e., etc. (Note that the period at the end of etc. is serving double duty as a period in that sentence! Do not double period abbreviations at the end of a sentence.) This can be corrected by telling LaTeX to use the appropriate spacing explicitly. A regular spacing is just a backslash followed by whitespace (\ ).

Not making sure line breaks are not in the middle of expressions that naturally should not line break: "Fig.
3". LaTeX does not know that your space after Fig. is not just a regular space where it can line break at will. Tell it that you will have none of it by using a non-breaking space (~). This goes for things like equation numbers (Eq. (3)), figure numbers (Fig. 4), or units (241 kg).

Not using proper spacing between numerical values and units: 1.23cm versus 1.23 cm. The appropriate typesetting is with a space. Also see the previous point not to mess up the line breaks!

Typesetting units in math mode: Units are not mathematical symbols. Do not typeset them as such. In running text, do not even enter math mode if you are just writing a number. End math mode after the number if it is part of an equation: ##\ell = 2.32## cm. (Don't forget the non-breaking space between ending math mode and the unit!) Inside a displayed equation, use a ~ to get the appropriate spacing and then use an \mbox or \rm for the units. Do not forget to separate units by a small space:
$$
100~\mbox{kgm/s} \quad \mbox{vs} \quad 100~\mbox{kg}\,\mbox{m/s} \quad \mbox{or} \quad 100~\mbox{kg m/s}
$$
(preferably the middle one).

Temperature confusions: Put the ##\circ## in the correct place. This includes not putting it at all when you are using Kelvin as your temperature unit. Wrong:
$$
90^\circ\mbox{C},\ 45^\circ~\mbox{C},\ 30~^\circ\mbox{K}
$$
(The middle one technically says "45 angular degrees Coulomb" ...)
Correct:
$$
90~^\circ\mbox{C},\ 30~\mbox{K}
$$

Improper use of minus signs, dashes, etc: Sure, you want to write the x-y-plane and you want to follow the rule that x and y need to be typeset in math mode, but for Heaven's sake, typeset the dash in between in regular text or it becomes a minus sign (which is also an operator and will be typeset as such with the spacings appropriate for that). Compare:
$$
\mbox{$x-y$-plane} \quad \mbox{to} \quad \mbox{$x$-$y$-plane.}
$$
(Or consistently use ##xy##-plane instead ...)
Also double check your usage of dashes (-) versus N-dashes (--) and M-dashes (---) and use the appropriate ones. For example, typically double names in things that are named after people in sciences (e.g., Levi-Civita) are separated by a regular dash whereas multiple different names (e.g., Robertson-Walker) would be separated by an N-dash. (My proof-reader thought Levi-Civita should go with an N-dash and consistently marked this, I told him otherwise.)

Improper spacing in equation arrays, aligns, etc.: Most math environments have a particular way in which they need to be used in order to get the appropriate spacing.
\begin{align*}
E = &B(a+b)
\end{align*}
Note how the = is closer to the ##B## than to the ##E##. This is not correct spacing.

Too long equations: In particular those where your equations overflow to the point of overwriting the equation number. You can line break an equation!

Overfull hboxes: Need I say more? A few pts, fine. But if your hboxes overflow by 234 pts it is going to look awful ...

Using Word to typeset your equations instead of LaTeX: Just don't.

Well, I don't think it is exhaustive but I am getting tired ...
 
  • Like
Likes BvU, Demystifier, lowlize and 5 others
  • #19
Spaces before unit vectors
$$\hat r =\cos\theta ~\hat x+\sin\theta~\hat y~ \quad \mbox{vs}~\quad \hat r =\cos\theta \hat x+\sin\theta\hat y$$

Spaces after unit vectors
$$\vec E\cdot \hat n~dS~ \quad \mbox{vs}~\quad \vec E\cdot \hat ndS$$

Dots in units
$$100~\mbox{N} \cdot \mbox{m} ~ \quad \mbox{vs} \quad 100~\mbox{N m}$$
 
  • #20
kuruman said:
Spaces before unit vectors
$$\hat r =\cos\theta ~\hat x+\sin\theta~\hat y~ \quad \mbox{vs}~\quad \hat r =\cos\theta \hat x+\sin\theta\hat y$$

This is related another general issue. Namely using parentheses for functions like ##\sin## and ##\cos##, in particular when followed by other symbols that are not part of the argument:
$$
\sin\theta x \quad \mbox{vs} \quad \sin(\theta) x \ \mbox{or}\ x\sin\theta
$$
Note that ##x\sin\theta## is correctly spaced in front, whereas ##xsin\theta## is not.

Spaces after unit vectors
$$\vec E\cdot \hat n~dS~ \quad \mbox{vs}~\quad \vec E\cdot \hat ndS$$

I would probably not put such large spacing (##\hat n\,dS## versus ##\hat n~dS##), but I also think it is related to the spacing to differentials.

Dots in units
$$100~\mbox{N} \cdot \mbox{m} ~ \quad \mbox{vs} \quad 100~\mbox{N m}$$

Same here, I would use ##100~{\rm N\,m}## rather than ##100~\mbox{N m}##, but yes I agree.
 
  • #21
Related to the ##|\psi\rangle## one, I myself perpetrated ##\epsilon << 1## before realising you could do ##\epsilon\ll 1##, which looks so much better.
 
  • Like
Likes DrClaude and Orodruin
  • #22
@Orodruin: Thanks! You pointed out many interesting common mistakes.

Orodruin said:
What I do care about is when it is used with improper spacing so that it is not clear at all what is there...
Notice that in my post above I had added the space :smile:

Orodruin said:
Starting a new paragraph after an equation or a figure: A common mistake is to want to space out the LaTeX source around a figure or equation.
I see this less often with figures, as people don't always include figures as part of the text. This is especially bad when the style puts an indentation at the beginning of a new paragraph.

Orodruin said:
Using different symbols in math mode and text: Yes, those dollar signs are annoying to type out, but not including them is a certain way to make sure your report looks unprofessional. It is ugly and confusing and some symbols really look different in regular text and in the math mode italic.
That bothers me a lot too. I have also seen instances where only part of an equation is within the dollar signs, something like x = ##y^2##.

Orodruin said:
Not using proper spacing after abbreviations:
I have had also the inverse problem. When dealing with chemical elements, a sentence can end in a chemical symbol followed by a period. LaTeX will then interpret this as an abbreviation and not use the correct end-of-sentence spacing, so one has to add \@
Code:
as is the case for HCN.\@ We can also see that

Orodruin said:
Not using proper spacing between numerical values and units:
Units are a big source of error. There is the spacing, the font type, how to deal with compound units... I recommend the package siunitx, which makes it easy to get the units right without much effort.

Orodruin said:
Improper spacing in equation arrays, aligns, etc.: Most math environments have a particular way in which they need to be used in order to get the appropriate spacing.
It's sad that amslatex botched that one. They do provide better alignment with align then the native eqnarray, but they didn't provide proper support for the case where the rhs must be broken up.

Orodruin said:
Using Word to typeset your equations instead of LaTeX: Just don't.
Friends don't let friends use Word.

Orodruin said:
Well, I don't think it is exhaustive but I am getting tired ...
Not exhaustive but exhausting? Thanks again!
 
  • #23
Using ##\delta## instead of ##\partial##
Using ##<## instead of ##\langle##
Not matching the bracket size with its argument.
 
  • #24
Math_QED said:
Not matching the bracket size with its argument.
I agree, but it can also be problematic. For instance, I think that the following is incorrect
$$
\left\langle \psi \left| \frac{\hat{p}^2}{2m} \right| \psi \right\rangle
$$
and should be
$$
\left\langle \psi \right| \frac{\hat{p}^2}{2m} \left| \psi \right\rangle
$$
 
  • Like
Likes Demystifier
  • #25
DrClaude said:
I agree, but it can also be problematic. For instance, I think that the following is incorrect
$$
\left\langle \psi \left| \frac{\hat{p}^2}{2m} \right| \psi \right\rangle
$$
and should be
$$
\left\langle \psi \right| \frac{\hat{p}^2}{2m} \left| \psi \right\rangle
$$
I think this is more of a style choice issue to be honest.

Math_QED said:
Using ##\delta## instead of ##\partial##
Or using ##\partial## instead of ##\delta## or ##d## ...
 
  • #26
One of my common ##\LaTeX## constructs for units is
Code:
\vec g= - 9.8{\rm\ m/s^2}\ \hat y %preferred
\vec g= - 9.8\ m/s^2\ \hat y
[itex] \vec g= - 9.8{\rm\ m/s^2}\ \hat y %preferred [/itex]
vs.
[itex] \vec g= - 9.8\ m/s^2\ \hat y [/itex]
With an " \mbox{} ", I can't use superscripts or subscripts easily..

(When I use Microsoft Word with MathType 6.9, I have a customized button for the units.
[By the way, I'm annoyed that MathType 7 is now subscription-based.]
)

Yes, I also hate "[short] hyphens" as minus signs:
3 + (-4) = -1 [ok]
vs
[itex] 3 + (-4) = -1[/itex] [great]
vs
[itex] \mbox{3 + (-4) = -1} [/itex] [not ok]


Recently, I prefer bold-nonitalicized vectors with arrowheads.
So I have macros (when I use ##{\TeX}studio## or Overleaf):
Code:
\def\VEC#1{\mathbf{\vec {#1}}}
\def\HAT#1{\mathbf{\hat {#1}}}
\def\NABLA{\VEC{\nabla}}

\NABLA\cdot\VEC{V}=\NABLA \cdot (V_x\ \HAT{x}+V_y\ \HAT{y})
[itex]
\def\VEC#1{\mathbf{\vec {#1}}}
\def\HAT#1{\mathbf{\hat {#1}}}
\def\NABLA{\VEC{\nabla}}
\NABLA\cdot\VEC{V}=\NABLA \cdot (V_x\ \HAT{x}+V_y\ \HAT{y})
[/itex]

I also prefer non-italicized subscripts for words:
Code:
\VEC F_{\scriptsize{\mbox{net on dog}}} 
\VEC F_{net\ on\ dog}

[itex]\VEC F_{\scriptsize{\mbox{net on dog}}} [/itex]
vs
[itex]\VEC F_{net\ on\ dog} [/itex]
(Maybe I should make a macro for that.)
Macros are good, in case I change my mind later.
In addition, they represent logical constructions in the composition,
rather than just strings of text in the source or in the rendered image.

My ##2\ c\hspace{-0.9ex}/##.
 
  • Like
Likes Greg Bernhardt
  • #27
Speaking of vectors, if you are going to use any character decorators (arrows, hats, etc), don't include subscripts "under" the decorator. It seems arguable to me with a one letter subscript (e.g. ##\vec {v_x}## vs ##\vec v_x##), but with a longer one it looks like ##\vec{v_{xyzabc}}##, for which I definitely prefer ##\vec v_{xyzabc}##.
 
  • Like
Likes DrClaude
  • #28
Orodruin said:
Temperature confusions: Put the ##\circ## in the correct place. This includes not putting it at all when you are using Kelvin as your temperature unit. Wrong:
$$
90^\circ\mbox{C},\ 45^\circ~\mbox{C},\ 30~^\circ\mbox{K}
$$
(The middle one technically says "45 angular degrees Coulomb" ...)
Correct:
$$
90~^\circ\mbox{C},\ 30~\mbox{K}
$$

I disagree with this one. I know the standard is technically supposed to be this:

$$
90~^\circ\mbox{C}
$$

However, I just find this to be much better aesthetically:

$$
90^\circ\mbox{C}
$$

(I'm not alone in that either - Oxford, the University of Chicago, and UCAR all follow this convention)
 
  • #29
cjl said:
I disagree with this one. I know the standard is technically supposed to be this:

$$
90~^\circ\mbox{C}
$$

However, I just find this to be much better aesthetically:

$$
90^\circ\mbox{C}
$$

(I'm not alone in that either - Oxford, the University of Chicago, and UCAR all follow this convention)

That someone else refuses to abide by standards (even if they are professional publishers or organisations) is not a good excuse not to abide by standards in my opinion. Regardless of how you find it aesthetically (especially if your aesthetics are off as in this case :wink:).
 
  • Like
Likes DrClaude
  • #30
Just remembered another one: ##*## is not a multiplication symbol (mathematics is not coding).
 
  • Like
Likes Wrichik Basu
  • #31
Some general pet peeves of mine.
  1. Use \par not \\ outside of some kind of environment that specifically makes use of \\, e.g align. Can also use a blank line in the code.
  2. Use \left \right to scale parentheses
  3. Prepare your preamble, if you need to change how something looks, you can do so in the preamble. Seen so many beginner students manually enumerating their sections, subsections or doing spacings between sections :nb).
 
  • #32
Well as I am using it only for legibility in homework help, perfectionism beyond a certain point I cannot justify more investment of time in, though I try up to that point. When you write ln and other function abbreviations you want it italics ##ln##. But I could only get it in certain positions here, but in others I couldn't, got something else, red color.

https://www.physicsforums.com/threa...l-of-1-ln-x-doesnt-exist.866353/#post-6137523
 
  • #33
Orodruin said:
That someone else refuses to abide by standards (even if they are professional publishers or organisations) is not a good excuse not to abide by standards in my opinion. Regardless of how you find it aesthetically (especially if your aesthetics are off as in this case ).

The fact that it's used by professional publishers and organizations makes it a different standard though, not nonstandard :wink:
 
  • #34
cjl said:
The fact that it's used by professional publishers and organizations makes it a different standard though, not nonstandard :wink:
You mean they are like Apple with their phone chargers? Annoy everyone to no end by not conforming to the standard followed by everyone else ... :rolleyes:
 
  • #35
This is kind of a rehash, but I'm not sure how firm the grounds are for some differences. Pure opinion, tradition in your field? I think it is more the former for some of these choices. And I cannot get a grip on why for some of them.

Here is one example:

How about Abramowitz and Stegun - Handbook of Mathematical Functions? Pretty standard resource, IMO. My father's calculus book from 1931 use the same typeface as A&S.

Check out Page X, Sec 3 'Auxillary Functions and Arguments'

One of these gives @DrClaude headaches.
##\int x \, \mathrm{d}x## versus ##\int x \, dx##

... they use very one @DrClaude does not approve of. I cannot copy it very well, you may want to consider verifying what I said directly. I get that paradigms may change, but I think you need to consider that older standard resources may have a different take on what is/was correct. I do not know of an "ANSI standard" for Latex use. Please advise me if one exists. These guys do not know of one, either. See accepted answer:
https://tex.stackexchange.com/questions/275330/is-there-a-language-standard-iso-ansi-for-latex
 
Last edited:
<h2>1. What is LaTeX and why is it important for scientific writing?</h2><p>LaTeX is a typesetting system used for creating professional and high-quality documents, particularly in the fields of mathematics, science, and engineering. It is important for scientific writing because it allows for precise and consistent formatting of equations, symbols, and figures, making it easier for readers to understand and reproduce the results.</p><h2>2. What are some common typographical errors to watch out for when using LaTeX?</h2><p>Some common typographical errors in LaTeX include missing or incorrect punctuation, using the wrong font style or size, and improper placement of mathematical symbols. It is important to proofread and check for these errors before finalizing a document.</p><h2>3. How can I ensure proper use of LaTeX in my documents?</h2><p>To ensure proper use of LaTeX, it is important to familiarize yourself with the basic syntax and commands, use templates or style files provided by journals or publishers, and consult online resources or reference guides for specific formatting guidelines.</p><h2>4. Can I use LaTeX for all types of scientific documents?</h2><p>Yes, LaTeX can be used for a variety of scientific documents such as research papers, presentations, posters, and even thesis or dissertation manuscripts. It is a versatile tool that can handle complex equations and graphics, making it suitable for most scientific writing needs.</p><h2>5. Are there any alternatives to using LaTeX for scientific writing?</h2><p>Yes, there are alternatives to using LaTeX for scientific writing, such as Microsoft Word or Google Docs. However, these programs may not have the same level of precision and flexibility as LaTeX when it comes to formatting mathematical equations and symbols. It ultimately depends on the specific needs and preferences of the writer.</p>

1. What is LaTeX and why is it important for scientific writing?

LaTeX is a typesetting system used for creating professional and high-quality documents, particularly in the fields of mathematics, science, and engineering. It is important for scientific writing because it allows for precise and consistent formatting of equations, symbols, and figures, making it easier for readers to understand and reproduce the results.

2. What are some common typographical errors to watch out for when using LaTeX?

Some common typographical errors in LaTeX include missing or incorrect punctuation, using the wrong font style or size, and improper placement of mathematical symbols. It is important to proofread and check for these errors before finalizing a document.

3. How can I ensure proper use of LaTeX in my documents?

To ensure proper use of LaTeX, it is important to familiarize yourself with the basic syntax and commands, use templates or style files provided by journals or publishers, and consult online resources or reference guides for specific formatting guidelines.

4. Can I use LaTeX for all types of scientific documents?

Yes, LaTeX can be used for a variety of scientific documents such as research papers, presentations, posters, and even thesis or dissertation manuscripts. It is a versatile tool that can handle complex equations and graphics, making it suitable for most scientific writing needs.

5. Are there any alternatives to using LaTeX for scientific writing?

Yes, there are alternatives to using LaTeX for scientific writing, such as Microsoft Word or Google Docs. However, these programs may not have the same level of precision and flexibility as LaTeX when it comes to formatting mathematical equations and symbols. It ultimately depends on the specific needs and preferences of the writer.

Similar threads

  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
3
Views
224
  • MATLAB, Maple, Mathematica, LaTeX
Replies
4
Views
3K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
5
Views
3K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
7
Views
8K
  • Calculus and Beyond Homework Help
Replies
5
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
3
Views
2K
Replies
8
Views
3K
  • General Discussion
Replies
4
Views
605
Back
Top