Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • M MathJax
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 304
    • Issues 304
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 15
    • Merge requests 15
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • MathJax
  • MathJax
  • Issues
  • #2419
Closed
Open
Issue created Apr 27, 2020 by Administrator@rootContributor

Poor kerning with subscripts, capital V, and an overmark

Created by: jason-s

\tilde{V}_d looks bad; too much spacing before the d, and it's not consistent with TeX. Other letters like \tilde{R}_d look ok.

I'm on Windows 10 but this is observable with Chrome, Firefox, and Opera.

Live example:

https://codepen.io/jason-s/full/LYpLRXO

Source code:

<html>
<head>
<script>
MathJax = {
  tex: {
    inlineMath: [['$', '$'], ['\\(', '\\)']]
  },
  svg: {
    fontCache: 'global'
  }
};
</script>
<script type="text/javascript" id="MathJax-script" async
  src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js">
</script>
</head>
<body>
  <p>
Here is the issue: $V_d \quad \tilde{V}_d \quad \hat{V}_d \quad \hat{R}_d$ 
  </p>
  
<p>
Putting the subscript inside the overmark looks better for kerning, but is not a good idea: $\tilde{V_{sandwich}} \quad \tilde{V}_{sandwich}$
  </p>  
</body>
</html>

TeX screenshot:

image

\documentclass[border=1mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[scale=5] at (0,0) {$\tilde{V}_d \quad \tilde{R}_d$};
\end{tikzpicture}
\end{document}

Screen capture of Chrome with my Codepen example at 300% size:

image

Assignee
Assign to
Time tracking