LaTeX How do I remove the space before Depth... in my LaTex table?

  • Thread starter Thread starter Mapes
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
A LaTeX user encountered an issue with unwanted space before the word "Depth" in a table. The initial solution involved removing the command \rule{0pt}{3ex}, which eliminated the space but also removed a horizontal line and its leading. The user discovered that simply removing the carriage space after the \rule command resolved the spacing issue while retaining the desired table formatting. The corrected code was shared, demonstrating the solution effectively.
Mapes
Science Advisor
Homework Helper
Gold Member
Messages
2,591
Reaction score
21
Hi folks,

Quick LaTex question: the following code produces a space before "Depth..." in the second row. How on Earth do I make it go away?

\begin{table}
\centering
\caption{Possible definitions of critical depth or thickness for traction-exerting cells on 2-D substrates.}
\vspace{0.05 in}
\begin{footnotesize}
\begin{raggedright}
\begin{tabular}{|p{4in} p{2in} |}
\hline \rule{0pt}{3ex}
& Effect of increasing \\
Definition & substrate stiffness \\[3pt]
\hline \rule{0pt}{3ex}
Depth at which a certain strain $\epsilon_{xx}$ exists [Krishnan et al] & Decrease $\left(\propto\!\sqrt{\frac{T}{\mu}}\right)$ \\[3pt]
Coating thickness that attenuates adhesion site displacement by a certain percentage (characterized by $U_1$)& Independent $\left(\propto a\right)$ \\[3pt]
Coating thickness that attenuates adhesion site distortion by a certain percentage (characterized by $U_2$)& Independent $\left(\propto a\right)$ \\[3pt]
Coating thickness that attenuates cell traction force microscopy measurements by a certain percentage & Independent $\left(\propto r\right)$\\[3pt]
Coating thickness that maintains a certain cell behavior & Increase\\[3pt]
\hline
\end{tabular}
\label{table:definitions}
\end{raggedright}
\end{footnotesize}
\end{table}

Thanks for your help.
 
Physics news on Phys.org
Just take out \rule{0pt}{3ex} before it.
 
No doubt, this removes the annoying space. But it also removes a most desirable horizontal line and the associated leading under it.
 
Ugh, I knew I would figure it out as soon as I posted. Simply removing the carriage space after \rule{0pt}{3ex} removes the problem. The corrected code is below. CRGreathouse, thanks for your suggestion.

\begin{table}
\centering
\caption{Possible definitions of critical depth or thickness for traction-exerting cells on 2-D substrates.}
\vspace{0.05 in}
\begin{footnotesize}
\begin{raggedright}
\begin{tabular}{|p{4in} p{2in} |}
\hline \rule{0pt}{3ex}
& Effect of increasing \\
Definition & substrate stiffness \\[3pt]
\hline \rule{0pt}{3ex}Depth at which a certain strain $\epsilon_{xx}$ exists [Krishnan et al] & Decrease $\left(\propto\!\sqrt{\frac{T}{\mu}}\right)$ \\[3pt]
Coating thickness that attenuates adhesion site displacement by a certain percentage (characterized by $U_1$)& Independent $\left(\propto a\right)$ \\[3pt]
Coating thickness that attenuates adhesion site distortion by a certain percentage (characterized by $U_2$)& Independent $\left(\propto a\right)$ \\[3pt]
Coating thickness that attenuates cell traction force microscopy measurements by a certain percentage & Independent $\left(\propto r\right)$\\[3pt]
Coating thickness that maintains a certain cell behavior & Increase\\[3pt]
\hline
\end{tabular}
\label{table:definitions}
\end{raggedright}
\end{footnotesize}
\end{table}
 

Similar threads

Replies
3
Views
2K
Replies
3
Views
3K
Replies
4
Views
3K
Replies
1
Views
2K
Replies
1
Views
3K
Replies
1
Views
3K
Replies
15
Views
25K
Back
Top