Text Formatting ⇒ problem with formating
problem with formating
have anybody an idea why the following commands:
\bfseries or \text{bfblabla} or \epmh{blabla}
give no result.
\Large or \normalfont etc. work, but the above don't.
Thans for any sugestions.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
problem with formating
[1] View topic: Avoidable mistakes
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: problem with formating
here what i am doing:
\documentclass[12pt, a4paper, oneside, makeidx]{memoir}
(...)
\settypeblocksize{9.5in}{35pc}{*}
\setlrmargins{1.25in}{*}{*}
\setulmargins{1.0in}{*}{*}
\setheadfoot{\onelineskip}{2\onelineskip}
\setheaderspaces{*}{2\onelineskip}{*}
\def\baselinestretch{1.5}
\checkandfixthelayout
\makechapterstyle{mychapterstyle}{%
\renewcommand{\chapnamefont}{\Large\sffamily\bfseries}%
\renewcommand{\chapnumfont}{\Large\sffamily\bfseries}%
\renewcommand{\chaptitlefont}{\Huge\sffamily\bfseries}%
\renewcommand{\printchaptertitle}[1]{%
\chaptitlefont\hrule height 0.75pt \vspace{1em}%
{##1}\vspace{1em}\hrule height 0.75pt%
}%
\renewcommand{\printchapternum}{%
\chapnumfont\thechapter%
}%
}
\chapterstyle{mychapterstyle}
\setsecheadstyle{\Large\sffamily\bfseries}
\setsubsecheadstyle{\large\sffamily\bfseries}
\setsubsubsecheadstyle{\normalfont\sffamily\bfseries}
\setparaheadstyle{\normalfont\sffamily}
(...)
\begin{document}
(...)
\sffamily\bfseries{ blablabl}
(...)
\end{document}
compiler shows no error, there is a warning: LaTeX Font /b/c12/cWarning:/b/c0/c Some font shapes were not available, defaulf subtituted
any idea what shell i do?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
problem with formating
At first you should read the topic I referred to and follow the instructions unexceptionally (tagging code in posts, minimal example, …). The code snippet you provided is not useful at all. I can only see that some fonts are missing. But since you preferred ellipsis instead of providing a compiling example, I can't give specific help.kzg wrote:[…] any idea what shell i do?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
problem with formating
Code: Select all
\textbf{Bold Text Here}
Re: problem with formating
