El documento no se compila usando VerbTeX en mi tableta

El documento no se compila usando VerbTeX en mi tableta

Buen día,

Estoy usando VerbTex en mi Lenovo Tab 4 y recientemente también instalé texlive 2018. He conseguido varios documentos para compilar incluso algunos simples con los paquetes amsmath y amssymb. Sin embargo, intenté compilar uno mucho más complicado sin éxito. Creo que se debe a que VerbTex no tiene todos los paquetes. Actualmente no estoy frente a mi máquina, solo mi tableta, pero puedo enumerar todos los paquetes en el documento:

  • amscd
  • amsby
  • formación
  • color
  • fuentes px
  • fantasíahdr
  • enmarcado
  • látex
  • multicolor
  • trucos
  • cortado
  • xcolor
  • imagen
  • identidad primero
  • enumitem
  • herramientas matemáticas
  • hiperreferencia
  • tikz
  • subfig.
  • teorema
  • cambios
  • tikz-cd
  • flotar
  • títulossec
  • elegante

Espero que todo lo que necesito hacer sea instalar todos estos paquetes en mi tableta, pero no estoy seguro de cómo.

Pude acceder a mi computadora y ahora puedo proporcionar un MWE:

\documentclass[a4paper,12pt]{book}

% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
% % % % % % % % % % % % % % % % % % % 
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %

\usepackage[left=1.65cm,right=1.65cm,top=2.45cm,bottom=2.60cm]{geometry}
\usepackage{amsmath,amssymb,amscd,amsbsy,array,color,pxfonts}
\usepackage{fancyhdr,framed,latexsym,multicol,pstricks}
\usepackage{slashed,xcolor,multicol}
\usepackage{picture}
\usepackage{indentfirst}
\usepackage{enumitem}
\usepackage{mathtools}

\setlist[description]{leftmargin=1cm,labelindent=1cm}

\usepackage{hyperref}
\hypersetup{
    colorlinks,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=black

}

\usepackage{tikz}
\usepackage{subfig}
\usetikzlibrary{calc,positioning,shapes.geometric}

\setenumerate[1]{label=(\alph*)}
\setenumerate[2]{label=(\roman*)}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\newcommand{\NOT}{\sim}\newcommand{\AND}{\wedge}\newcommand{\OR}{\vee}
\newcommand{\twolinebrace}{\rlap{$\smash{\raisebox{.5\height}{\bigg\}}}$}}
\newlength{\LHS}\newlength{\RHS}
\settowidth{\LHS}{$P \OR (Q \OR R)$}\settowidth{\RHS}{$(P \AND Q) \OR (P \AND R)$}
\newcolumntype{M}{>{$}p{\LHS}<{$}}
\newcolumntype{N}{>{$}p{\RHS}<{$}}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\usepackage[amsmath,framed,thmmarks]{ntheorem}

\usepackage{changes}

\usepackage{tikz}
\usepackage{tikz-cd}
\usepackage{subfig}
\usepackage{float}
\usepackage{titlesec}
\usepackage[Conny]{fncychap}
\pagestyle{fancy}
\setcounter{chapter}{-1}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{#1}{}}
\lhead{\leftmark}
\rhead{\rightmark}
\cfoot{\thepage}
\setlength{\headheight}{15pt}

\renewcommand{\thesection}{\arabic{section}}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\titleformat{\section}[frame]
{\normalfont}
{\filcenter
\footnotesize
\enspace SECTION \thesection\enspace}
{8pt}
{\Large\bfseries\filcenter}

% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
% Equation Numbering %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
%code by Heiko Oberdiek
\makeatletter
%Roman counter
\newcounter{roem}
\renewcommand{\theroem}{\roman{roem}}

% save the original counter
\newcommand{\c@org@eq}{}
\let\c@org@eq\c@equation
\newcommand{\org@theeq}{}
\let\org@theeq\theequation

%\setroem sets roman counting
\newcommand{\setroem}{
\let\c@equation\c@roem
\let\theequation\theroem}

%\setarab the arabic counting
\newcommand{\setarab}{
\let\c@equation\c@org@eq
\let\theequation\org@theeq}

% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
% Theorem/Example/Definition/Proof Styles %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\newtheorem{Theorem}{Theorem}

\theoremclass{Theorem}
\theoremstyle{break}
\theoreminframepreskip{0pt}
\theoreminframepostskip{0pt}
\theoremframepreskip{1cm}
\theoremframepostskip{1cm}
\theoremstyle{break}
\def\theoremframecommand{%
    \psshadowbox[fillstyle=solid,fillcolor=cyan,linecolor=black]}
\newshadedtheorem{them}{Theorem}[section]

\theoremclass{Theorem}
\theoremstyle{break}
\theoreminframepreskip{0pt}
\theoreminframepostskip{0pt}
\theoremframepreskip{1cm}
\theoremframepostskip{1cm}
\theoremstyle{break}
\def\theoremframecommand{%
    \psshadowbox[fillstyle=solid,fillcolor=gray,linecolor=black]}
\newshadedtheorem{prop}{Proposition}[section]

% % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
% Sets used in Analysis %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
\def    \bN{\mathbb N}
\def    \bZ{\mathbb Z}
\def    \bQ{\mathbb Q}
\def    \bR{\mathbb R}
\def    \bC{\mathbb C}

% % % % % % % % % % % % % % % % % % % % % % % % % % % % % 
% % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % 

\title{Modern Analysis: Real \& Complex}
\author{Micheal (Philip) Dykes and Croix Snap}

\begin{document}

\maketitle

\chapter{Logic, Set Theory, Functions, and Relations.}
\section{Mathematical Logic.}
\subsection*{Introduction.}
    \small{Analysis is all about the theory behind Calculus. In this course, we do not take for granted such notions as what the set $\bR$ of real numbers is; rather we carefully define $\bR$ by ``building" it out of other sets - beginning with the set $\bN$ of Natural Numbers. Numbers and number systems (i.e. $\bN, \bZ, \bQ, \bR$, and $\bC$) are the ``building-blocks" of Analysis. Here in this book, we do not merely state the properties of the Real Number System, but we derive them. 

\end{document}

miguel d

Respuesta1

TeX Live es una distribución TeX multiplataforma con numerosos motores TeX compuestos por miles de paquetes en total entre 200 Mb y varios GB y hay algunos usuarios que han tenido un éxito desigual al usar varias piezas más pequeñas en teléfonos o tabletas. Varias aplicaciones livianas para iOS (TeXpad) y Android (TeXPortal/TeXpert, un enfoque de aplicación dual para permitir la distribución de carga, ya que las aplicaciones de Android estaban limitadas a 32 MB de memoria dinámica. Al separarse en dos aplicaciones, ¡podrían utilizar la friolera de 64 MB!)

La última variante del LawTeX estable de LAH utiliza ε-TEX, un motor mejorado que es un subconjunto de los paquetes Tex Live, pero utiliza principalmente DVI y PNG en segundo plano durante el tiempo de compilación. Lamentablemente, el desarrollador de ε-TEX Peter Breitenlohner, b1940, aprobado en octubre de 2015.

Del archivo Léame de LawTeX

"No pretende proporcionar PDF ni ningún tipo de publicación profesional"

  1. Utilice LawTeX para ESCRIBIR y PREVISUALIZAR su código LaTeX; y
  2. Cuando esté satisfecho con el CONTENIDO, genere el PDF en línea usando VerbTeX.

Las aplicaciones modernas como VerbTeX permiten que un editor de pantalla pequeña proporcione un IDE simple y luego transfiera la compilación a un servidor PDF mucho más completo basado en la nube. de ahí la popularidad de Overleaf.

A menos que tenga una tableta convencional con Windows o Nix, es poco probable que tenga el almacenamiento necesario, la potencia de coprocesamiento o una gama completa de paquetes compatibles. (Por supuesto, eso podría cambiar en el futuro y es posible que me equivoque acerca de las ofertas actuales)

"VerboTeXle permite crear y administrar proyectos LaTeX directamente en su dispositivo Android ygenerar un PDF utilizando el servicio LaTeX disponible en verbosus.com".

En efecto, esto es similar a otras soluciones en línea; existen varios sistemas académicos de composición tipográfica basados ​​en la nube con varias características. Los más comunes sonautorea Épsilon / PapeleríaOverLeaf/ShareLaTeX, por nombrar sólo algunos, y hay más editores de látex especializados para elegir, como CoCalc de SageMath

información relacionada