Questions tagged [utf8]
The utf8 tag has no summary.
56 questions
0
votes
1
answer
78
views
I have converted my file into UTF8 but the czech characters appear wrongly rendered [closed]
EDIT 4
I have proceeded much but still some characters are wrong. E.g. the 3rd paragraph should read "koncepty řešení"
I have used this
/mnt/e/Strawberry2/c/bin/iconv.exe -t utf-8 th0.tex &...
2
votes
1
answer
102
views
Error Invalid UTF-8 byte sequence with German Umlaut in package listings [duplicate]
The following minimal working example yields the above error:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\lstset{language=Python,inputencoding=...
6
votes
1
answer
147
views
Expanding macros to string
I have macros for output first char of string.
\makeatletter
\def\firstchar#1{\expandafter\checkfirst#1\@nil}
\def\checkfirst#1{%
\ifx\UTFviii@two@octets#1%
\expandafter\gettwooctets
\else
\...
2
votes
1
answer
73
views
utf8 character in index of .dtx file
I'm trying to add § as a command to my .dtx file (as an active character), including the index. Consider the following code:
\documentclass{ltxdoc}
\EnableCrossrefs
\CodelineIndex
\NewDocElement[...
4
votes
2
answers
184
views
LuaLaTeX overline in text mode
Consider the following code that draws and overline over characters using Lua and unicode combining diacritic (0x0305). Note this is not a macron, but an overline, used in some books to indicate ...
2
votes
1
answer
104
views
specification of encoding of log/aux file in different engines/os
I only use utf8 encoding for my tex sources and I mostly use lualatex.
I would be interested whether this guarantees already that the log/aux file is encoded in utf8 also.
I did not find any ...
3
votes
2
answers
90
views
XeTeX, LuaTeX: how to use \write for obtaining a UTF8 file with BOM marker?
I have a document that typesets some data, but also writes it to a csv file using \write. The data includes UTF8 characters.
As a convenience, it should be possible to open the csv file under Windows ...
0
votes
1
answer
431
views
LaTeX Error: Invalid UTF-8 byte "AB
I encountered this error when compiling my Tex file, the compiler used was pdfLaTex:
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
... ...
0
votes
0
answers
145
views
Multiple-codepoint emoji
I'm trying to include UTF-8 emoji's like "Woman Kneeling" (🧎🏻♀️) in a XeLaTeX document.
Unlike single-codepoint emoji's such as Winking Face with Tongue (😜) which has only one unicode ...
1
vote
1
answer
108
views
minted package: Julia utf 8 characters vanish
In my Julia code (filename:bell.jl) there appear lines with special characters like
ket_labels=["|ϕ⁺⟩", "|ϕ⁻⟩", "|Ψ⁺⟩","|Ψ⁻⟩"];
ϕ⁺ = QBase.Ket(1/sqrt(2)*[1,...
0
votes
1
answer
175
views
How to resolve LaTeX Error: Unicode character if Package CJK is forbbidden?
In the offical AAAI Latex package, it explicitly claims the CJK package is forbidden.
Therefore, the following error appears when the content of the paper contains such charaters.
LaTeX Error: Unicode ...
3
votes
1
answer
61
views
Code shows in Greek letters
I have been trying to insert an Octave function in my paper but when I build the pdf the letters are all turned into greek.(The rest of the paper is written in greek). What is even weirder is that ...
1
vote
3
answers
525
views
How to include arabic Unicode Point in Overleaf
So I am fairly new to overleaf and I am using it to write my master's thesis. How would I include the arabic phrase "BISMILLAH AR-RAHMAN AR-RAHEEM" in overleaf as part of my acknowledgements?...
1
vote
1
answer
227
views
Encountering a warning while running the Overleaf document, "Package amsmath Warning: Unable to redefine math accent \vec."
Following are the packages which I have used in the document.
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage{algpseudocode}
\usepackage{algorithm}
\...
6
votes
2
answers
620
views
UTF8 not (fully) working in tables
Is there a reason for UTF8 not working in table/tabular the way they do in normal text? I try to write a lower case sigma in a table. In the normal text, I can just put a σ and it's displayed ...