It worked! Thank you so much!user22741 wrote:The table has also to use the new column type.
Search found 7 matches
- Fri Apr 26, 2019 10:47 pm
- Forum: Graphics, Figures & Tables
- Topic: Left Aligning Text in Longtable
- Replies: 4
- Views: 15069
Left Aligning Text in Longtable
- Fri Apr 26, 2019 9:03 pm
- Forum: Graphics, Figures & Tables
- Topic: Left Aligning Text in Longtable
- Replies: 4
- Views: 15069
Left Aligning Text in Longtable
The `ragged2e` package has the great `\RaggedRight` macro for such cases:
\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref,upgreek,graphicx,chemformula,subfig,longtable,multirow}
\modulolinenumbers[5]
\usepackage{geometry}
\geometry{%
letterpaper, % a4paper
left= 2.54 cm,
right= 2 ...
\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref,upgreek,graphicx,chemformula,subfig,longtable,multirow}
\modulolinenumbers[5]
\usepackage{geometry}
\geometry{%
letterpaper, % a4paper
left= 2.54 cm,
right= 2 ...
- Fri Apr 26, 2019 3:22 am
- Forum: Graphics, Figures & Tables
- Topic: Left Aligning Text in Longtable
- Replies: 4
- Views: 15069
Left Aligning Text in Longtable
Hi! It took me hours how to figure out how to build this table and make it fit in my margins, but now my only issue is that I can't move the headers to the left. It's mostly just the second heading that has a big gap between "Particle" and "Size". I cut out some of the numbers to make it shorter ...
- Fri Apr 26, 2019 1:19 am
- Forum: Math & Science
- Topic: Placing Text Between Equations
- Replies: 7
- Views: 29456
Placing Text Between Equations
Your output looks just as it should. If you really want to reduce the space:
\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref,upgreek,graphicx,chemformula,subfig}
\modulolinenumbers[5]
\begin{document}
\begin{align}
\ch{Ce + H_2 -> CeH_2}, \qquad \qquad \Delta &G_{rxn}^\circ ...
\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref,upgreek,graphicx,chemformula,subfig}
\modulolinenumbers[5]
\begin{document}
\begin{align}
\ch{Ce + H_2 -> CeH_2}, \qquad \qquad \Delta &G_{rxn}^\circ ...
- Thu Apr 25, 2019 11:10 pm
- Forum: Math & Science
- Topic: Placing Text Between Equations
- Replies: 7
- Views: 29456
Placing Text Between Equations
can you show some example code that produces obnoxiously large spacing? I only get the usual above and below display skip in my example.
\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref,upgreek,graphicx,chemformula,subfig}
\modulolinenumbers[5]
\begin{document}
\begin ...
\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref,upgreek,graphicx,chemformula,subfig}
\modulolinenumbers[5]
\begin{document}
\begin ...
- Thu Apr 25, 2019 9:43 pm
- Forum: Math & Science
- Topic: Placing Text Between Equations
- Replies: 7
- Views: 29456
Placing Text Between Equations
Are you searching for `\intertext{}`?
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
eqn1 \\[10pt]
eqn2\\
\intertext{\centering text}
eqn3
\end{align}
\end{document}
Yes, that works great, but is there a way to shorten the distance between the text and ...
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
eqn1 \\[10pt]
eqn2\\
\intertext{\centering text}
eqn3
\end{align}
\end{document}
Yes, that works great, but is there a way to shorten the distance between the text and ...
- Thu Apr 25, 2019 6:08 pm
- Forum: Math & Science
- Topic: Placing Text Between Equations
- Replies: 7
- Views: 29456
Placing Text Between Equations
Hi everyone! First post. I'm very new to LaTeX and just started a couple of days ago. I'm trying to write a series of equations and I want to place text between them, but when I put the text in math mode it numbers it like an equation. If I put the text outside of the math mode I get a huge gap ...