Math & Science ⇒ Having trouble using titlesec with math functions
-
- Posts: 10
- Joined: Fri Jul 31, 2020 6:11 pm
Having trouble using titlesec with math functions
I'm using class ARTICLE, ans packages ASMATH and TITLESEC. (this code example can be seen on page 12 of the redme.pdf in titlesec's documentation.
\newcommand{\secmark}{}
\newenvironment{advanced}
{\renewcommand{\secmark}{*}}
{..}
\titleformat{\section}
{..}
{\thesection\secmark\quad}{..}{..}
\begin{document}
\begin{advanced}
\section{one,two,three} %%%%%%%%%%%%%%% This is the First Math program example. Basics.
This formula $f(x) = x^2$ is an example.\\
\end{advanced}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Posts: 10
- Joined: Fri Jul 31, 2020 6:11 pm
Having trouble using titlesec with math functions
Here's theres:
%\titleformat{\section}
%{..}
%{\thesection\secmark\quad}
%{..}
%{..}
This is what I did to make it work:
\titleformat{\section}
{\normalsize}
{\thesection\secmark\quad}
{0pt}
{..}
{}