Supporting People in the Greater Middle East. Support our Mission. There are always opportunities to have active involvement in our mission; whether it is to speak in a conference, to teach in colleges, to minister in local churches, or to visit the sites where humanitarian projects are facilitated. TeXnicle: TeXnicle is a 'LaTeX editor and project organiser for Mac OS X with a feature-rich interface to help you manage your LaTeX projects.' Although still in beta, TeXnicle is stable, and the developer is receptive to suggestions. Texnicle-screenshot.png (1020×659).
Techniclean Inc

xelatex_bibtex_minted.engine
#!/bin/sh |
# |
# This is a xelatex engine for TeXnicle. |
# |
# It runs xelatex the desired number of times, optionally running bibtex after the first run. |
# |
# <support>nCompile,doBibtex</support> |
# |
# xelatex.engine |
# TeXnicle |
# |
# DO NOT EDIT THIS ENGINE. It will be overwritten each time TeXnicle starts up. |
# |
if [ $#-lt 2 ] |
then |
echo'usage: <file-to-compile> <working-directory> (<num compile> <do bibtex>)' |
exit |
fi |
# Executable values |
PATH=/usr/texbin:/usr/local/bin:$PATH |
ENGINE=/usr/texbin/xelatex |
BIBTEX=/usr/texbin/bibtex |
# Process inputs. |
# TeXnicle passes the file to be processed as the first input to this |
# script and the working directory as the second input. Other options follow. |
mainfile=$1 |
outputDir=$2 |
nCompile=$3 |
doBibtex=$4 |
doPS2PDF=$5 |
echo'****************************' |
echo'*** Compiling $mainfile' |
echo'*** Output dir $outputDir' |
echo'*** Ncompile $nCompile' |
echo'*** Do bibtex $doBibtex' |
echo'****************************' |
# Go to the working directory |
cd'$outputDir' |
# Do the correct number of typesetting runs |
count=1 |
while [ $count-le$nCompile ] |
do |
echo'' |
echo'***------------------------------------------------------------' |
echo'*** Run $count...' |
echo'***------------------------------------------------------------' |
$ENGINE -synctex=1 -file-line-error -interaction=nonstopmode --shell-escape '$mainfile' |
# if this is after the first run, run bibtex if requested |
if [ $count-eq 1 ] |
then |
if [ $doBibtex-eq 1 ] |
then |
echo'*** Running bibtex...' |
$BIBTEX'$mainfile' |
fi |
fi |
count=$(($count+1)) |
done |
echo'*** xelatex.engine has completed.' |
# END |
Technical Windows
commented Feb 27, 2014

Technical Schools Near Me

Techniclean Hp
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
