Fonts & Character Sets ⇒ About characters < and >
-
- Posts: 4
- Joined: Tue Aug 24, 2010 9:03 am
About characters < and >
Hi,
I am using these configuration inputs
\RequirePackage[latin1]{inputenc}
\RequirePackage[spanish,activeacute]{babel}
and when I put on my text the caharacters < and > after the compilation latex changes them for ¡ and ¿ respectively.
Any idea?, is there a possible way to force a character via ascii code or something like that.
thanks in advance.
I am using these configuration inputs
\RequirePackage[latin1]{inputenc}
\RequirePackage[spanish,activeacute]{babel}
and when I put on my text the caharacters < and > after the compilation latex changes them for ¡ and ¿ respectively.
Any idea?, is there a possible way to force a character via ascii code or something like that.
thanks in advance.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
About characters < and >
It is essential to know exactly what you are doing. Therefore we need a minimal working example (MWE) [1]. These characters are nothing special thus should not cause trouble.
And by the way, the \RequirePackage command is for use in document classes or packages. For documents there is the \usepackage command.
[1] View topic: Avoidable mistakes
Best regards and welcome to the board
Thorsten
And by the way, the \RequirePackage command is for use in document classes or packages. For documents there is the \usepackage command.
[1] View topic: Avoidable mistakes
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 351
- Joined: Sat Aug 02, 2008 8:47 am
-
- Posts: 4
- Joined: Tue Aug 24, 2010 9:03 am
Re: About characters < and >
thank you
solved using
\RequirePackage[T1]{fontenc}
\RequirePackage[latin9]{inputenc}
\RequirePackage[spanish,activeacute]{babel}
yes it is a documment class.
solved using
\RequirePackage[T1]{fontenc}
\RequirePackage[latin9]{inputenc}
\RequirePackage[spanish,activeacute]{babel}
yes it is a documment class.
-
- Posts: 4
- Joined: Tue Aug 24, 2010 9:03 am
Re: About characters < and >
The problem is that using T1 fontenc the quality of the output is worse.
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
About characters < and >
In that case use a font that supports T1 encoding. For instance the high quality Latin Modern font designed to be the successor of the standard fonts:
Or, install the cm-super package containing the standard Computer Modern font in T1 encoding. In that case there's no change needed in your document.
Stefan
Code: Select all
\usepackage{lmodern}
Stefan
LaTeX.org admin
-
- Posts: 351
- Joined: Sat Aug 02, 2008 8:47 am
About characters < and >
trycidmi.dovic wrote:The problem is that using T1 fontenc the quality of the output is worse.
Code: Select all
\usepackage{mathpazo}
Code: Select all
\usepackage{mathpazo}
\usepackage{libertine}
-
- Posts: 4
- Joined: Tue Aug 24, 2010 9:03 am
Re: About characters < and >
Thank you stefan, you are a crack!!!
Regards.
Regards.