Questions tagged [xelatex]

XeLaTeX is LaTeX on top of a modified TeX engine for added Unicode and OpenType support

LaTeX macro package running with XeTex as the underlying engine (which extends TeX with rich Unicode and OpenType facilities), offering in particular new font selection mechanisms (fontspec package) and multilingual typesetting (polyglossia). More information is available at wikipedia.

230 questions
2
votes
0 answers

CJK short title causes errors with Papaja RMarkdown

I'm writing an article with papaja package (an RMarkdown variant), which contains some Japanese characters. I would like to write its shorttitle in Japanese as follows: title : "ここは日本語もOK: You have a Japanese title" shorttitle :…
Carlos Luis Rivera
  • 3,108
  • 18
  • 45
2
votes
0 answers

How can I save a table with unicode characters to pdf in R

I want to create a table in an adobe acrobat file with unicode characters like ≥ and ±. I used xelatex and saved with the encoding="UTF-8" parameter like suggested in other questions on stackoverflow. #' --- #' title: "Cannot render Unicode" #'…
Robert
  • 924
  • 1
  • 9
  • 20
2
votes
1 answer

Changing the latex_engine gets an error when trying to align images on kable

I am trying to copy the first answer in this question. The answer really meets what I wanted. But it get an error when the latex_engine is xelatex. But I really needs to show the output in chinese. Here's the code --- title: "Untitled" output: …
蔡佳諭
  • 65
  • 1
  • 4
2
votes
1 answer

How to add text to each entry in the "list of listings"?

I need to use the package "listings" in a huge XeLaTeX document to modify each entry in the "list of listings". I managed to show the chapter number, the number within chapter, the caption, several dots, and the page number for each entry. However,…
2
votes
0 answers

How do I turn off image rendering when converting markdown to PDF with PowerShell?

I am converting markdown documents to PDF with Pandoc using PowerShell and want to turn off the image rendering. Is there a way to do this without touching the Markdown itself? The Markdown documents are mainly for use on SharePoint, but I do also…
JV53
  • 69
  • 6
2
votes
1 answer

How to put two equations in one line with different number?

I have to short equations, and consume to much vertical space, I want to gather them in one line, but with different number. I want to the equation show like below a = b (1) c = d (2) d = e (3) e = f (4)
Huzhenyu
  • 97
  • 2
  • 8
2
votes
1 answer

How to put markdown pages onto new PDF pages with Pandoc?

Pandoc allows a user to translate multiple Markdown input files into one PDF file. pandoc --pdf-engine=xelatex -o test.pdf *.md With this call, all Markdown pages are continuously listed in the PDF output without any new-page. I would like to start…
Paebbels
  • 15,573
  • 13
  • 70
  • 139
2
votes
1 answer

Why does xelatex not want to be called by popen3 in vararg form?

Take this minimal LaTeX document: % minimal.tex \documentclass{article} \begin{document} Hello World! \end{document} And this Ruby (2.5.1) script: require 'open3' Open3.popen3( 'xelatex', '-interaction=nonstopmode', '"minimal.tex"' ) do…
Raphael
  • 9,779
  • 5
  • 63
  • 94
2
votes
0 answers

How can I deal with weird result? XeLaTeX, LuaLaTeX not working

So, I have been using TeXstudio for my LaTeX documents and MiKTeX 2.9. I opened some documents that I created in the past and I see that using XeLateX a weird result at the top of the first page is visible, and I could not find anything similar on…
user11141026
2
votes
2 answers

Formatting of Strings in Latex in whitespace insensitive environment / Z-Notation Schema

I'm using latex to model a few functions using Z-Notation, however, I'm having issues showing a string for output. In this reduced example code, the text in the quotes has a different formatting from what I would expect. What can I use to keep the…
JosephTLyons
  • 2,075
  • 16
  • 39
2
votes
1 answer

RMarkdown xelatex !Missing & Inserted

I originally posted with issues here: Rmarkdown with xelatex I have since reinstalled, but now I'm having an entirely new issue. Using the following code (inside a .Rmd file): --- header-includes: - \usepackage{graphicx} output: pdf_document: …
Matt
  • 174
  • 1
  • 2
  • 14
2
votes
1 answer

How to input foreign unicode characters into XeLaTeX?

Friends, I am working on a XeLaTeX document. I am almost done with my document, but I need to input text from a foreign language. I am running Mac OS X. I go to Preferences > Language & Text and in there I enable Gurmukhi - QWERTY. This allows me to…
2
votes
2 answers

ipython notebook images not seen in pdf conversion

When I try to convert the ipynb file to pdf my pictures in the ipynb don't make it to the pdf at all. There is no sign of them and the markdown table doesn't get rendered properly. Is there a reason why this is happening?
2
votes
2 answers

Unicode characters in XeLatex

This is my LaTex script: \documentclass[a4paper]{article} \usepackage{fontspec} \usepackage{xunicode} \usepackage{xltxtra} \setmainfont[Mapping=tex-text]{Jenson Classico} \begin{document} ąęśćłó \end{document} I compile this using xelatex through…
Filip
  • 573
  • 5
  • 19
2
votes
1 answer

Generating LaTeX Server Side

I'm trying to build a service that accepts some string with LaTeX formatting and then returns a string with the LaTeX bits as pngs, or whatever else. So, the idea is: client sends a request containing: the point is that $sum_{n=1}^5 f(x)$ is a good…
bamboozled
  • 23
  • 3