Code: Select all
\section{Computation of the coefficients $\tau_2$, $\sigma_2$ and $\delta_2$}
Code: Select all
\section{Computation of the coefficients $\tau_2$, $\sigma_2$ and $\delta_2$}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\texorpdfstring{tex}{pdf}
. You might also consider using \boldsymbol
to get bold greek symbols in the section title.Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{hyperref}
\begin{document}
\section{Computation of the coefficients \texorpdfstring{$\boldsymbol{\tau_2}$}{tau2},
\texorpdfstring{$\boldsymbol{\sigma_2}$}{sigma2} and \texorpdfstring{$\boldsymbol{\delta_2}$}{delta2}}
\end{document}
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{hyperref}
\newcommand*\mathinhead[2]{\texorpdfstring{$\boldsymbol{#1}$}{#2}}
\begin{document}
\section{Computation of the coefficients \mathinhead{\tau_2}{tau2},
\mathinhead{\sigma_2}{sigma2} and \mathinhead{\delta_2}{delta2}}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis