leanhdung1994

Results 8 issues of leanhdung1994

I am a fan of WYSIWYG feature. Unfortunately, Texstudio only has an option `Auto-recompile document on changes`, which is not a kind of incremental rendering: ![image](https://github.com/texstudio-org/texstudio/assets/28704090/a0b3ca43-e3be-47a6-bffc-d4e53e98e33e) Recently, I have come...

enhancement
help wanted

Recently, a vscode [extension](https://github.com/DominikPeters/texpresso-vscode) for TeXpresso has been released. It is mentioned that > TeXpresso needs to be installed separately to use this extension, following its [install guide](https://github.com/let-def/texpresso/blob/main/INSTALL.md) which contains...

I am using: - Windows 11 Pro version 23H2 and build 22631.3593. - Neovim verison 0.10.0. My `init.lua` (for Windows as suggested by @andregpss in [his comment](https://github.com/frabjous/knap/issues/27#issuecomment-2135390035)) is the following:...

I have a tikz tex file \documentclass[10pt,a5paper]{report} \usepackage[x11names,table]{xcolor} \usepackage{tikz} \usetikzlibrary{math,calc,arrows.meta} \pagestyle{empty} \begin{document} \begin{tikzpicture}[domain=-4:4,>=Latex,x=10.mm,y=1.mm,thick]\scriptsize \draw[semithick,->] ([xshift=-10pt]-4, 0) -- ([xshift=10pt] 4, 0) node[right] {$x$}; \draw[semithick,->] ([yshift=-1pt] 0, -10) -- ([yshift=10pt] 0, 40);...

I can upload TXT files normally with `Upload File(s)`. However, this command does not work for ZIP files. Could you confirm if GistPad does not support uploading ZIP files?

bug

I have a simple tex file ``` \documentclass{article} \usepackage{hyperref,biblatex} \begin{document} We have something. \end{document} ``` I try to compile this file with Tectonic on Windows 11 and get a compatibility...

I have a tex file ````tex \documentclass[12pt]{article} \usepackage{amsthm,amssymb,mathtools} % Create modification of align environments % https://tex.stackexchange.com/a/751147/161639 % https://tex.stackexchange.com/a/751622/161639 \makeatletter \ExplSyntaxOn %% Variable declarations. \int_new:N \g__example_position_int %% The list of environments...

I have a Python file: ````python from concurrent.futures import ProcessPoolExecutor import indexed_gzip as igzip def processNdjson(ndjsonName): with igzip.IndexedGzipFile(str(inTarDir), index_file=indexGzipDir) as myZip: with tarfile.open(fileobj=myZip, mode="r:*") as f: member = f.getmember(ndjsonName) dataFile...